diff options
author | 1998-03-05 23:08:17 +0000 | |
---|---|---|
committer | 1998-03-05 23:08:17 +0000 | |
commit | 6f295a11f4ae3cf6ebbf8e4534b7deb012fa6f3c (patch) | |
tree | 436f522810c49b353d82788cae098cfe924607d1 | |
parent | Initialise sockaddr::sa_len (stopping a pretty nasty (diff) | |
download | wireguard-openbsd-6f295a11f4ae3cf6ebbf8e4534b7deb012fa6f3c.tar.xz wireguard-openbsd-6f295a11f4ae3cf6ebbf8e4534b7deb012fa6f3c.zip |
main returns int
-rw-r--r-- | sys/arch/alpha/stand/boot/boot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/stand/boot/boot.c b/sys/arch/alpha/stand/boot/boot.c index d79987b7356..47154c401ec 100644 --- a/sys/arch/alpha/stand/boot/boot.c +++ b/sys/arch/alpha/stand/boot/boot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: boot.c,v 1.10 1997/07/08 10:42:25 niklas Exp $ */ +/* $OpenBSD: boot.c,v 1.11 1998/03/05 23:08:17 deraadt Exp $ */ /* $NetBSD: boot.c,v 1.10 1997/01/18 01:58:33 cgd Exp $ */ /* @@ -71,7 +71,7 @@ char *kernelnames[] = { NULL }; -void +int main() { char *name, **namep; |