diff options
Diffstat (limited to 'bin/chflags')
-rw-r--r-- | bin/chflags/Makefile | 2 | ||||
-rw-r--r-- | bin/chflags/chflags.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/bin/chflags/Makefile b/bin/chflags/Makefile index 30b66998e122..b545bfa90f2c 100644 --- a/bin/chflags/Makefile +++ b/bin/chflags/Makefile @@ -5,5 +5,7 @@ NOSHARED?=yes PROG= chflags CFLAGS+=-Wall +.PATH: ${.CURDIR}/../../lib/libc/gen +SRCS= chflags.c setflags.c .include <bsd.prog.mk> diff --git a/bin/chflags/chflags.c b/bin/chflags/chflags.c index daeab4d92107..784243e10268 100644 --- a/bin/chflags/chflags.c +++ b/bin/chflags/chflags.c @@ -56,6 +56,8 @@ static const char rcsid[] = #include <string.h> #include <unistd.h> +extern u_long setflags __P((char **, u_long *, u_long *)); + void usage __P((void)); int |