mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-26 13:21:07 +03:00
@ -1,3 +1,8 @@
|
|||||||
|
2012-07-22 Thomas Schwinge <thomas@codesourcery.com>
|
||||||
|
|
||||||
|
* math/w_ilogb.c: Include <limits.h>.
|
||||||
|
* math/w_ilogbl.c: Likewise.
|
||||||
|
|
||||||
2012-07-20 Joseph Myers <joseph@codesourcery.com>
|
2012-07-20 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
* manual/lang.texi (__va_copy): Document primarily as ISO C99
|
* manual/lang.texi (__va_copy): Document primarily as ISO C99
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include <limits.h>
|
||||||
#include <math_private.h>
|
#include <math_private.h>
|
||||||
|
|
||||||
/* wrapper ilogb */
|
/* wrapper ilogb */
|
||||||
@ -34,7 +35,6 @@ __ilogb (double x)
|
|||||||
}
|
}
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
weak_alias (__ilogb, ilogb)
|
weak_alias (__ilogb, ilogb)
|
||||||
#ifdef NO_LONG_DOUBLE
|
#ifdef NO_LONG_DOUBLE
|
||||||
strong_alias (__ilogb, __ilogbl)
|
strong_alias (__ilogb, __ilogbl)
|
||||||
|
@ -35,5 +35,4 @@ __ilogbf (float x)
|
|||||||
}
|
}
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
weak_alias (__ilogbf, ilogbf)
|
weak_alias (__ilogbf, ilogbf)
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include <limits.h>
|
||||||
#include <math_private.h>
|
#include <math_private.h>
|
||||||
|
|
||||||
/* wrapper ilogbl */
|
/* wrapper ilogbl */
|
||||||
|
Reference in New Issue
Block a user