diff options
author | Matthew Dempsky <matthew@cvs.openbsd.org> | 2014-06-04 20:13:50 +0000 |
---|---|---|
committer | Matthew Dempsky <matthew@cvs.openbsd.org> | 2014-06-04 20:13:50 +0000 |
commit | 13eed0265c7dd4bd313b7b59ef6210a0ee599810 (patch) | |
tree | 5b391c30ca5d2f42319a1dca356b2fde8114569a /lib/libc/arch/m88k | |
parent | df20b77986557f66c89b345fa17843a9c55d7b6b (diff) |
Apply "unifdef -D__STDC__" to libc/arch/*/SYS.h
A while back, pascal@ converted our system call stubs from using "cpp
| as" to "cc -x assembler-with-cpp", so there's no need to stay
compatible with ancient preprocessor semantics.
ok miod
Diffstat (limited to 'lib/libc/arch/m88k')
-rw-r--r-- | lib/libc/arch/m88k/SYS.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/libc/arch/m88k/SYS.h b/lib/libc/arch/m88k/SYS.h index ded09283f1e..9d6de9d755e 100644 --- a/lib/libc/arch/m88k/SYS.h +++ b/lib/libc/arch/m88k/SYS.h @@ -1,4 +1,4 @@ -/* $OpenBSD: SYS.h,v 1.17 2013/04/11 19:15:21 miod Exp $*/ +/* $OpenBSD: SYS.h,v 1.18 2014/06/04 20:13:49 matthew Exp $*/ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -37,11 +37,7 @@ #include <sys/syscall.h> #include <machine/asm.h> -#ifdef __STDC__ #define __CONCAT(p,x) p##x -#else -#define __CONCAT(p,x) p/**/x -#endif #define __ENTRY(p,x) ENTRY(__CONCAT(p,x)) #define __END(p,x) END(__CONCAT(p,x)) #define __SYSCALLNAME(p,x) __CONCAT(p,x) |