diff options
author | Andreas Jaeger <aj@suse.de> | 2000-07-06 07:50:24 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-07-06 07:50:24 +0000 |
commit | b24516a06bce85307dbd3f3bc2a2265c96805cc0 (patch) | |
tree | 3803209820fce1ff979e6874773d75273b39ffc6 /math | |
parent | 34173b51e7b16366953c6f34f6b6cc0012d63fa4 (diff) | |
download | glibc-b24516a06bce85307dbd3f3bc2a2265c96805cc0.zip glibc-b24516a06bce85307dbd3f3bc2a2265c96805cc0.tar.gz glibc-b24516a06bce85307dbd3f3bc2a2265c96805cc0.tar.bz2 |
Include <stdio.h> for printf.
Diffstat (limited to 'math')
-rw-r--r-- | math/test-fpucw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/test-fpucw.c b/math/test-fpucw.c index 7f46bd4..a702d17 100644 --- a/math/test-fpucw.c +++ b/math/test-fpucw.c @@ -18,7 +18,7 @@ Boston, MA 02111-1307, USA. */ #include <fpu_control.h> -#include <stdlib.h> +#include <stdio.h> int main (void) @@ -33,7 +33,7 @@ main (void) printf ("control word is 0x%x but should be 0x%x.\n", cw, _FPU_DEFAULT); return (cw != _FPU_DEFAULT); - + #else return 0; #endif |