diff options
Diffstat (limited to 'contrib/lukemftp/src/complete.c')
-rw-r--r-- | contrib/lukemftp/src/complete.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/contrib/lukemftp/src/complete.c b/contrib/lukemftp/src/complete.c index 5d68361ee76a..8831bc199420 100644 --- a/contrib/lukemftp/src/complete.c +++ b/contrib/lukemftp/src/complete.c @@ -36,11 +36,23 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/cdefs.h> +#ifndef lint +__RCSID("$NetBSD: complete.c,v 1.38 2000/05/01 10:35:17 lukem Exp $"); +#endif /* not lint */ + /* * FTP user program - command and file completion routines */ -#include "lukemftp.h" +#include <sys/stat.h> + +#include <ctype.h> +#include <err.h> +#include <dirent.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> #include "ftp_var.h" |