diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-03-19 07:40:14 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-03-19 07:40:14 +0000 |
commit | 3cbc204cbaf2ade4f1b67ceaf65c9a6822db4f91 (patch) | |
tree | b23f7c1a2a35f8e5b70a22060e044366211f4636 /usr.sbin/mopd/mopprobe/mopprobe.c | |
parent | 627eddf8e4cff77c2e601a125aed63c9f24b856f (diff) |
main returns int
Diffstat (limited to 'usr.sbin/mopd/mopprobe/mopprobe.c')
-rw-r--r-- | usr.sbin/mopd/mopprobe/mopprobe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/mopd/mopprobe/mopprobe.c b/usr.sbin/mopd/mopprobe/mopprobe.c index a5bae7d915c..258791726c5 100644 --- a/usr.sbin/mopd/mopprobe/mopprobe.c +++ b/usr.sbin/mopd/mopprobe/mopprobe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mopprobe.c,v 1.3 1997/01/15 23:44:29 millert Exp $ */ +/* $OpenBSD: mopprobe.c,v 1.4 1998/03/19 07:39:44 deraadt Exp $ */ /* * Copyright (c) 1993-96 Mats O Jansson. All rights reserved. @@ -30,7 +30,7 @@ */ #ifndef LINT -static char rcsid[] = "$OpenBSD: mopprobe.c,v 1.3 1997/01/15 23:44:29 millert Exp $"; +static char rcsid[] = "$OpenBSD: mopprobe.c,v 1.4 1998/03/19 07:39:44 deraadt Exp $"; #endif /* @@ -74,7 +74,7 @@ int oflag = 0; /* print only once */ int promisc = 1; /* Need promisc mode */ char *Program; -void +int main(argc, argv) int argc; char **argv; |