diff options
author | tjr <tjr@FreeBSD.org> | 2003-01-03 23:27:27 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2003-01-03 23:27:27 +0000 |
commit | d0b52ce8ccc2edfa0d852790e910f508fef2bf77 (patch) | |
tree | ba6cd92a711633fadc0291958e37947843aff285 /lib/libc/stdio/scanf.c | |
parent | d7c9b91a26b09f120dfb9f47d7a768701e7259a5 (diff) | |
download | FreeBSD-src-d0b52ce8ccc2edfa0d852790e910f508fef2bf77.zip FreeBSD-src-d0b52ce8ccc2edfa0d852790e910f508fef2bf77.tar.gz |
#include "local.h" to make __svfscanf()'s prototype visible.
Diffstat (limited to 'lib/libc/stdio/scanf.c')
-rw-r--r-- | lib/libc/stdio/scanf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libc/stdio/scanf.c b/lib/libc/stdio/scanf.c index 929c20b..37236cd 100644 --- a/lib/libc/stdio/scanf.c +++ b/lib/libc/stdio/scanf.c @@ -45,6 +45,7 @@ __FBSDID("$FreeBSD$"); #include <stdarg.h> #include "un-namespace.h" #include "libc_private.h" +#include "local.h" int scanf(char const * __restrict fmt, ...) |