diff options
Diffstat (limited to 'lib/msun/src/s_floor.c')
-rw-r--r-- | lib/msun/src/s_floor.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/msun/src/s_floor.c b/lib/msun/src/s_floor.c index 582a01a..65f696a 100644 --- a/lib/msun/src/s_floor.c +++ b/lib/msun/src/s_floor.c @@ -10,9 +10,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); /* * floor(x) @@ -23,6 +22,8 @@ static char rcsid[] = "$FreeBSD$"; * Inexact flag raised if x not equal to floor(x). */ +#include <float.h> + #include "math.h" #include "math_private.h" |