diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-07-27 21:29:54 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-07-27 21:29:54 +0000 |
commit | 0ca28e7501431790453b2b8a3407d95cb0df734f (patch) | |
tree | 06e23eec9fdc378bd661c634abc89d0edb82d61e /sys/compat/ultrix/ultrix_misc.c | |
parent | 078253af8b9273a3cd3303ffa535f76e3260ac17 (diff) |
#ifdef vax -> #ifdef __vax__
Diffstat (limited to 'sys/compat/ultrix/ultrix_misc.c')
-rw-r--r-- | sys/compat/ultrix/ultrix_misc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/ultrix/ultrix_misc.c b/sys/compat/ultrix/ultrix_misc.c index 7e8f7c560f7..de70e550b4c 100644 --- a/sys/compat/ultrix/ultrix_misc.c +++ b/sys/compat/ultrix/ultrix_misc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ultrix_misc.c,v 1.18 2001/05/16 12:50:21 ho Exp $ */ +/* $OpenBSD: ultrix_misc.c,v 1.19 2001/07/27 21:29:53 miod Exp $ */ /* $NetBSD: ultrix_misc.c,v 1.23 1996/04/07 17:23:04 jonathan Exp $ */ /* @@ -140,9 +140,9 @@ extern char *ultrix_syscallnames[]; #define ULTRIX_EXEC_SETREGS cpu_exec_ecoff_setregs #endif /* __mips__ */ -#ifdef vax +#ifdef __vax__ #define ULTRIX_EXEC_SETREGS setregs -#endif /* mips */ +#endif /* __vax__ */ extern void ULTRIX_EXEC_SETREGS __P((struct proc *, struct exec_package *, |