1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Added "math_logb.c"; I still have to verify that it works as expected.

git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14705 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2004-08-12 12:31:29 +00:00
parent 3f284b7fb8
commit c18e21ee36
7 changed files with 149 additions and 5 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: math.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $
* $Id: math.h,v 1.3 2004-08-12 12:31:29 obarthel Exp $
*
* :ts=4
*
@ -89,6 +89,7 @@ extern double rint(double x);
extern float rintf(float x);
extern int isinf(double x);
extern int isnan(double x);
extern double logb(double x);
/****************************************************************************/