diff options
author | phk <phk@FreeBSD.org> | 2006-04-01 19:06:54 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2006-04-01 19:06:54 +0000 |
commit | a6edaf1c5c5a75d8ff61e82e0a7a94d9066aa556 (patch) | |
tree | 414dd43b4bfb97d3d754134156d9b721f643e6f5 /lib/libc/stdio/vfwscanf.c | |
parent | 01ed5990aef062b97e91680895804b9689c8076b (diff) | |
download | FreeBSD-src-a6edaf1c5c5a75d8ff61e82e0a7a94d9066aa556.zip FreeBSD-src-a6edaf1c5c5a75d8ff61e82e0a7a94d9066aa556.tar.gz |
Add missing #if's for NO_FLOATING_POINT
Diffstat (limited to 'lib/libc/stdio/vfwscanf.c')
-rw-r--r-- | lib/libc/stdio/vfwscanf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/stdio/vfwscanf.c b/lib/libc/stdio/vfwscanf.c index 327ec40..a855677 100644 --- a/lib/libc/stdio/vfwscanf.c +++ b/lib/libc/stdio/vfwscanf.c @@ -99,7 +99,9 @@ __FBSDID("$FreeBSD$"); #define CT_INT 3 /* %[dioupxX] conversion */ #define CT_FLOAT 4 /* %[efgEFG] conversion */ +#ifndef NO_FLOATING_POINT static int parsefloat(FILE *, wchar_t *, wchar_t *); +#endif extern int __scanfdebug; |