diff options
author | rodrigc <rodrigc@FreeBSD.org> | 2015-09-20 03:55:03 +0000 |
---|---|---|
committer | rodrigc <rodrigc@FreeBSD.org> | 2015-09-20 03:55:03 +0000 |
commit | 0fd58af2628ada6a88790da9468ce03d82432743 (patch) | |
tree | f46e478fe16612d4d101ea6f409b2d50f80d6c96 /lib/libc/stdio/fgetwln.c | |
parent | 08c0b3cae7201b8a0e94863e7c07d51f4ececd04 (diff) | |
download | FreeBSD-src-0fd58af2628ada6a88790da9468ce03d82432743.zip FreeBSD-src-0fd58af2628ada6a88790da9468ce03d82432743.tar.gz |
Add declarations to eliminate -Wmissing-prototypes warnings
Diffstat (limited to 'lib/libc/stdio/fgetwln.c')
-rw-r--r-- | lib/libc/stdio/fgetwln.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/stdio/fgetwln.c b/lib/libc/stdio/fgetwln.c index 6d9087b..daef9b3 100644 --- a/lib/libc/stdio/fgetwln.c +++ b/lib/libc/stdio/fgetwln.c @@ -40,6 +40,8 @@ __FBSDID("$FreeBSD$"); #include "local.h" #include "xlocale_private.h" +wchar_t *fgetwln_l(FILE * __restrict fp, size_t *lenp, locale_t locale); + wchar_t * fgetwln_l(FILE * __restrict fp, size_t *lenp, locale_t locale) { |