diff options
Diffstat (limited to 'usr.bin/tip/cmdtab.c')
-rw-r--r-- | usr.bin/tip/cmdtab.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/tip/cmdtab.c b/usr.bin/tip/cmdtab.c index c6044955e7d..b0e7e00863a 100644 --- a/usr.bin/tip/cmdtab.c +++ b/usr.bin/tip/cmdtab.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmdtab.c,v 1.5 2003/06/03 02:56:18 millert Exp $ */ +/* $OpenBSD: cmdtab.c,v 1.6 2006/03/16 19:32:46 deraadt Exp $ */ /* $NetBSD: cmdtab.c,v 1.3 1994/12/08 09:30:46 jtc Exp $ */ /* @@ -34,14 +34,14 @@ #if 0 static char sccsid[] = "@(#)cmdtab.c 8.1 (Berkeley) 6/6/93"; #endif -static const char rcsid[] = "$OpenBSD: cmdtab.c,v 1.5 2003/06/03 02:56:18 millert Exp $"; +static const char rcsid[] = "$OpenBSD: cmdtab.c,v 1.6 2006/03/16 19:32:46 deraadt Exp $"; #endif /* not lint */ #include "tip.h" -extern int shell(), getfl(), sendfile(), chdirectory(); -extern int finish(), help(), pipefile(), pipeout(), consh(), variable(); -extern int cu_take(), cu_put(), dollar(), genbrk(), suspend(), listvariables(); +extern int shell(int), getfl(int), sendfile(int), chdirectory(int); +extern int finish(int), help(int), pipefile(int), pipeout(int), consh(int), variable(int); +extern int cu_take(int), cu_put(int), dollar(int), genbrk(int), suspend(int), listvariables(int); esctable_t etable[] = { { '!', NORM, "shell", shell }, |