diff options
author | Heikki Korpela <heko@cvs.openbsd.org> | 2001-08-12 12:03:04 +0000 |
---|---|---|
committer | Heikki Korpela <heko@cvs.openbsd.org> | 2001-08-12 12:03:04 +0000 |
commit | 8733d65e598e20f5a4415a710e9c51ab3a3d323d (patch) | |
tree | 39173461770e11f8ad331e9aa18365fc4ab2d19f /lib/libc/arch/mips | |
parent | bbbc80b14c0c9c05eb40dfe595d4893002a710bf (diff) |
#(endif|else) foo is incorrect, make it #endif /* foo */
deraadt@ ok
Diffstat (limited to 'lib/libc/arch/mips')
-rw-r--r-- | lib/libc/arch/mips/SYS.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/arch/mips/SYS.h b/lib/libc/arch/mips/SYS.h index 59d96fde4a1..f8a57c29cb8 100644 --- a/lib/libc/arch/mips/SYS.h +++ b/lib/libc/arch/mips/SYS.h @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $OpenBSD: SYS.h,v 1.5 1999/01/19 01:38:54 d Exp $ + * $OpenBSD: SYS.h,v 1.6 2001/08/12 12:03:01 heko Exp $ */ #include <sys/syscall.h> @@ -73,10 +73,10 @@ # define PSEUDO(x,y) __PSEUDO(_thread_sys_,x,y) # define SYSLEAF(x) __LEAF2(_thread_sys_,x) # define SYSEND(x) __END2(_thread_sys_,x) -#else _THREAD_SAFE +#else /* _THREAD_SAFE */ # define RSYSCALL(x) __RSYSCALL(,x) # define PSEUDO(x,y) __PSEUDO(,x,y) # define SYSLEAF(x) __LEAF2(,x) # define SYSEND(x) __END2(,x) -#endif _THREAD_SAFE +#endif /* _THREAD_SAFE */ |