diff options
author | rodrigc <rodrigc@FreeBSD.org> | 2015-09-20 03:58:27 +0000 |
---|---|---|
committer | rodrigc <rodrigc@FreeBSD.org> | 2015-09-20 03:58:27 +0000 |
commit | 49c1e7af60e615f705f90c25386a70bf0e8df3bc (patch) | |
tree | b6f5bdec7c930b09b58d9ed6e82979fb3cc69a72 /lib/libc/gen/dup3.c | |
parent | 4c66a735a8a5535605a39718c7baa5b3ef42015c (diff) | |
download | FreeBSD-src-49c1e7af60e615f705f90c25386a70bf0e8df3bc.zip FreeBSD-src-49c1e7af60e615f705f90c25386a70bf0e8df3bc.tar.gz |
Add declarations to eliminate -Wmissing-prototypes warnings
Diffstat (limited to 'lib/libc/gen/dup3.c')
-rw-r--r-- | lib/libc/gen/dup3.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/gen/dup3.c b/lib/libc/gen/dup3.c index ac8877c..b7fd9bf 100644 --- a/lib/libc/gen/dup3.c +++ b/lib/libc/gen/dup3.c @@ -35,6 +35,8 @@ __FBSDID("$FreeBSD$"); #include <errno.h> #include "un-namespace.h" +int __dup3(int oldfd, int newfd, int flags); + int __dup3(int oldfd, int newfd, int flags) { |