diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2000-06-19 20:06:20 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2000-06-19 20:06:20 +0000 |
commit | a523e997c1a51cdd8790b5baa5063f9ae4d337ec (patch) | |
tree | c38e0ea9f178648ec3c5ef20ffa7f24b65fa045b /usr.bin/tcfs/tcfsrmuser.c | |
parent | dfe75051c4e14d14e779991125bd2e52b3976c53 (diff) |
add missing headers, declare missing functions remove unused vars, KNF;
more to come.
Diffstat (limited to 'usr.bin/tcfs/tcfsrmuser.c')
-rw-r--r-- | usr.bin/tcfs/tcfsrmuser.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/tcfs/tcfsrmuser.c b/usr.bin/tcfs/tcfsrmuser.c index a8752f43b81..423682f76a6 100644 --- a/usr.bin/tcfs/tcfsrmuser.c +++ b/usr.bin/tcfs/tcfsrmuser.c @@ -11,9 +11,11 @@ */ +#include <err.h> #include <stdio.h> +#include <stdlib.h> +#include <string.h> #include <unistd.h> -#include <err.h> #include <miscfs/tcfs/tcfs.h> #include "tcfslib.h" @@ -31,7 +33,7 @@ rmuser_main (int argn, char *argv[]) { int have_user = FALSE; int be_verbose = FALSE; - char *user, *passwd; + char *user; tcfspwdb *user_info; int val; |