summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2010-05-23 11:35:19 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2010-05-23 11:35:19 +0000
commit12b1f47f056570e4487a542c357d792c40bb83fb (patch)
tree0dcb270350cb505b1f4f6e2aafec4805841a654d /sys
parent5ba9dba4b735dc96a2a42fc42a248394b921d589 (diff)
use __alpha__ not alpha for the ifdef
Diffstat (limited to 'sys')
-rw-r--r--sys/compat/bsdos/syscalls.master4
-rw-r--r--sys/compat/freebsd/syscalls.master8
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/compat/bsdos/syscalls.master b/sys/compat/bsdos/syscalls.master
index 0a73988e904..1ac5d1174ed 100644
--- a/sys/compat/bsdos/syscalls.master
+++ b/sys/compat/bsdos/syscalls.master
@@ -1,4 +1,4 @@
- $OpenBSD: syscalls.master,v 1.18 2008/01/05 00:36:11 miod Exp $
+ $OpenBSD: syscalls.master,v 1.19 2010/05/23 11:35:18 deraadt Exp $
; OpenBSD COMPAT_BSDOS system call name/number "master" file.
; (See syscalls.conf to see what it is processed into.)
@@ -304,7 +304,7 @@
169 UNIMPL
170 UNIMPL
; XXX more generally, never on machines where sizeof(void *) != sizeof(int)
-#if defined(SYSVSHM) && !defined(alpha)
+#if defined(SYSVSHM) && !defined(__alpha__)
171 NOARGS { int compat_10_sys_shmsys(int which, int a2, int a3, \
int a4); }
#else
diff --git a/sys/compat/freebsd/syscalls.master b/sys/compat/freebsd/syscalls.master
index bec6737eb5b..80982e62ef0 100644
--- a/sys/compat/freebsd/syscalls.master
+++ b/sys/compat/freebsd/syscalls.master
@@ -1,4 +1,4 @@
- $OpenBSD: syscalls.master,v 1.33 2008/01/05 00:36:13 miod Exp $
+ $OpenBSD: syscalls.master,v 1.34 2010/05/23 11:35:18 deraadt Exp $
; $NetBSD: syscalls.master,v 1.3 1995/10/10 18:28:40 mycroft Exp $
; from: @(#)syscalls.master 8.2 (Berkeley) 1/13/94
@@ -315,21 +315,21 @@
167 UNIMPL
168 UNIMPL
; XXX more generally, never on machines where sizeof(void *) != sizeof(int)
-#if defined(SYSVSEM) && !defined(alpha)
+#if defined(SYSVSEM) && !defined(__alpha__)
169 NOARGS { int compat_10_sys_semsys(int which, int a2, int a3, \
int a4, int a5); }
#else
169 UNIMPL 1.0 semsys
#endif
; XXX more generally, never on machines where sizeof(void *) != sizeof(int)
-#if defined(SYSVMSG) && !defined(alpha)
+#if defined(SYSVMSG) && !defined(__alpha__)
170 NOARGS { int compat_10_sys_msgsys(int which, int a2, int a3, \
int a4, int a5, int a6); }
#else
170 UNIMPL 1.0 msgsys
#endif
; XXX more generally, never on machines where sizeof(void *) != sizeof(int)
-#if defined(SYSVSHM) && !defined(alpha)
+#if defined(SYSVSHM) && !defined(__alpha__)
171 NOARGS { int compat_10_sys_shmsys(int which, int a2, int a3, \
int a4); }
#else