diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-06-13 11:42:11 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-06-13 11:42:11 +0000 |
commit | f94283ce2e6199c99cc4cbbc02e6cb7a97d67bfa (patch) | |
tree | 4f360fced3a38c5d1421496c377e08aabc7a3477 /lib | |
parent | c49daa89041708f00466bdb281e1290676dba1e7 (diff) |
"#endif _THREAD_SAFE" is not legal
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/arch/alpha/SYS.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/arch/alpha/SYS.h b/lib/libc/arch/alpha/SYS.h index 499381760a0..2e24bf825e2 100644 --- a/lib/libc/arch/alpha/SYS.h +++ b/lib/libc/arch/alpha/SYS.h @@ -1,4 +1,4 @@ -/* $OpenBSD: SYS.h,v 1.4 1999/01/06 06:10:12 d Exp $ */ +/* $OpenBSD: SYS.h,v 1.5 2001/06/13 11:42:10 art Exp $ */ /* $NetBSD: SYS.h,v 1.4 1996/10/17 03:03:53 cgd Exp $ */ /* @@ -85,7 +85,7 @@ __END(p,label); # define PSEUDO(x,y) __PSEUDO(_thread_sys_,x,y) # define SYSLEAF(x,e) __LEAF(_thread_sys_,x,e) # define SYSEND(x) __END(_thread_sys_,x) -#else _THREAD_SAFE +#else /* _THREAD_SAFE */ /* * The non-threaded library defaults to traditional syscalls where * the function name matches the syscall name. @@ -97,4 +97,4 @@ __END(p,label); # define PSEUDO(x,y) __PSEUDO(,x,y) # define SYSLEAF(x,e) __LEAF(,x,e) # define SYSEND(x) __END(,x) -#endif _THREAD_SAFE +#endif /* _THREAD_SAFE */ |