diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2004-03-16 01:11:10 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2004-03-16 01:11:10 +0000 |
commit | 923dcd6706e06e5d73c82258a99ae176f75a6804 (patch) | |
tree | 86d50af5a120a945a4631b83c9834f38fb448d92 /sbin/init/init.c | |
parent | 5158e01d42b380c30ab5e2d29d8b053c2e336cb2 (diff) |
errno is not specified to be int, but something from errno.h. ok millert@
Diffstat (limited to 'sbin/init/init.c')
-rw-r--r-- | sbin/init/init.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sbin/init/init.c b/sbin/init/init.c index 8fc3e13f700..5a23245bdc9 100644 --- a/sbin/init/init.c +++ b/sbin/init/init.c @@ -1,4 +1,4 @@ -/* $OpenBSD: init.c,v 1.34 2003/10/30 23:58:52 deraadt Exp $ */ +/* $OpenBSD: init.c,v 1.35 2004/03/16 01:11:09 tedu Exp $ */ /* $NetBSD: init.c,v 1.22 1996/05/15 23:29:33 jtc Exp $ */ /*- @@ -43,7 +43,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)init.c 8.2 (Berkeley) 4/28/95"; #else -static char rcsid[] = "$OpenBSD: init.c,v 1.34 2003/10/30 23:58:52 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: init.c,v 1.35 2004/03/16 01:11:09 tedu Exp $"; #endif #endif /* not lint */ @@ -423,7 +423,6 @@ setsecuritylevel(int newlevel) { #ifdef KERN_SECURELVL int name[2], curlevel; - extern int errno; curlevel = getsecuritylevel(); if (newlevel == curlevel) |