diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-11 11:21:56 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-11 11:21:56 +0000 |
commit | 089ed1a3a82f83c83dbed0cd6c1fbad0d2749bba (patch) | |
tree | 78f2ef7bf93b8c8a253ea34f9796334e9fe49ba7 /usr.bin/soelim/soelim.c | |
parent | bbea39e22899df0a7ea946b6e4372463e041e28e (diff) |
cleanup -Wall
Diffstat (limited to 'usr.bin/soelim/soelim.c')
-rw-r--r-- | usr.bin/soelim/soelim.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/soelim/soelim.c b/usr.bin/soelim/soelim.c index 1038ab36d87..af2e35d459e 100644 --- a/usr.bin/soelim/soelim.c +++ b/usr.bin/soelim/soelim.c @@ -1,4 +1,4 @@ -/* $OpenBSD: soelim.c,v 1.2 1996/06/26 05:39:26 deraadt Exp $ */ +/* $OpenBSD: soelim.c,v 1.3 1997/09/11 11:21:53 deraadt Exp $ */ /* $NetBSD: soelim.c,v 1.3 1994/12/21 08:11:26 jtc Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)soelim.c 8.1 (Berkeley) 6/6/93"; #endif -static char rcsid[] = "$OpenBSD: soelim.c,v 1.2 1996/06/26 05:39:26 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: soelim.c,v 1.3 1997/09/11 11:21:53 deraadt Exp $"; #endif /* not lint */ #include <stdio.h> @@ -66,6 +66,9 @@ static char rcsid[] = "$OpenBSD: soelim.c,v 1.2 1996/06/26 05:39:26 deraadt Exp */ #define STDIN_NAME "-" +int process __P((char *file)); + +int main(argc, argv) int argc; char *argv[]; |