diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-03-21 20:59:31 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-03-21 20:59:31 +0000 |
commit | de8fc656a0c2333ca26ef58be6bca4df52f04997 (patch) | |
tree | 7db8ae9f234db473edbaab17321cce6c47df0466 /usr.bin/ftp/extern.h | |
parent | c1f038b9831779bb245ab82b038f418d974b98c6 (diff) |
Add in recent NetBSD changes we didn't already have:
Always compile complete.c but ifdef out the bits if -DSMALL (christos)
reset interactive mode correctly in auto_fetch() mget mode (lukem)
Diffstat (limited to 'usr.bin/ftp/extern.h')
-rw-r--r-- | usr.bin/ftp/extern.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ftp/extern.h b/usr.bin/ftp/extern.h index 67f4d958a61..e4f3aa6bab1 100644 --- a/usr.bin/ftp/extern.h +++ b/usr.bin/ftp/extern.h @@ -1,5 +1,5 @@ -/* $OpenBSD: extern.h,v 1.9 1997/03/14 04:32:14 millert Exp $ */ -/* $NetBSD: extern.h,v 1.12 1997/03/13 06:23:15 lukem Exp $ */ +/* $OpenBSD: extern.h,v 1.10 1997/03/21 20:59:28 millert Exp $ */ +/* $NetBSD: extern.h,v 1.13 1997/03/14 01:39:37 christos Exp $ */ /*- * Copyright (c) 1994 The Regents of the University of California. @@ -54,9 +54,9 @@ void changetype __P((int, int)); void cmdabort __P((int)); void cmdscanner __P((int)); int command __P((const char *, ...)); -#ifndef SMALLFTP +#ifndef SMALL unsigned char complete __P((EditLine *, int)); -#endif /* !SMALLFTP */ +#endif /* !SMALL */ int confirm __P((const char *, const char *)); FILE *dataconn __P((const char *)); void delete __P((int, char **)); |