diff options
| author | joerg <joerg@NetBSD.org> | 2011-07-28 22:32:28 +0000 |
|---|---|---|
| committer | joerg <joerg@NetBSD.org> | 2011-07-28 22:32:28 +0000 |
| commit | 4c9d3f32d5f9dc0614e723a0e230d807a09d0904 (patch) | |
| tree | f3af4092f858c10958cccf191f2d62eace18c079 /include | |
| parent | ca0782de1a2737a3a84170041eb35194dd097bdb (diff) | |
Add ilogbl(3).
Diffstat (limited to 'include')
| -rw-r--r-- | include/math.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/math.h b/include/math.h index f6644855a21..ec6ecba6c32 100644 --- a/include/math.h +++ b/include/math.h @@ -1,4 +1,4 @@ -/* $NetBSD: math.h,v 1.55 2011/07/26 16:10:15 joerg Exp $ */ +/* $NetBSD: math.h,v 1.56 2011/07/28 22:32:28 joerg Exp $ */ /* * ==================================================== @@ -498,6 +498,8 @@ int __isnanl(long double); int __signbitl(long double); #endif +int ilogbl(long double); +long double logbl(long double); long double scalbnl(long double, int); __END_DECLS |
