From: millert Date: Fri, 28 Feb 1997 07:15:58 +0000 (+0000) Subject: Back out multiple inclusion check. There are things that depend X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=5beb7a0011e727248a97ce6956e37abe70dd757c;p=openbsd Back out multiple inclusion check. There are things that depend on being able to re-include sys/errno.h with _KERNEL defined. Ick. --- diff --git a/sys/sys/errno.h b/sys/sys/errno.h index e726a1d3f27..47d983a65ac 100644 --- a/sys/sys/errno.h +++ b/sys/sys/errno.h @@ -1,4 +1,4 @@ -/* $OpenBSD: errno.h,v 1.6 1997/02/27 01:00:54 millert Exp $ */ +/* $OpenBSD: errno.h,v 1.7 1997/02/28 07:15:58 millert Exp $ */ /* $NetBSD: errno.h,v 1.10 1996/01/20 01:33:53 jtc Exp $ */ /* @@ -41,9 +41,6 @@ * @(#)errno.h 8.5 (Berkeley) 1/21/94 */ -#ifndef _SYS_ERRNO_H_ -#define _SYS_ERRNO_H_ - #ifndef _KERNEL extern int errno; /* global error number */ @@ -174,5 +171,3 @@ extern char *sys_errlist[]; #define ERESTART -1 /* restart syscall */ #define EJUSTRETURN -2 /* don't modify regs, just return */ #endif - -#endif