diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2006-01-10 01:17:29 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2006-01-10 01:17:29 +0000 |
commit | 44cfb68e3189707686b8edff8642a37e6e637f9b (patch) | |
tree | d0a189f795084585ef5f0441bdc53329a0f391c5 /sys/arch | |
parent | 9c848b1ebf48348be6065e5205b98427552c65ac (diff) |
The __CONCAT macro here collides with the one in cdefs.h pulled in via
errno.h. Don't include errno.h and export EFAULT therefore.
looks good miod@
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hppa/hppa/genassym.cf | 5 | ||||
-rw-r--r-- | sys/arch/hppa/hppa/locore.S | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/sys/arch/hppa/hppa/genassym.cf b/sys/arch/hppa/hppa/genassym.cf index 842af4daa32..2aab0926aef 100644 --- a/sys/arch/hppa/hppa/genassym.cf +++ b/sys/arch/hppa/hppa/genassym.cf @@ -1,4 +1,4 @@ -# $OpenBSD: genassym.cf,v 1.28 2006/01/06 18:53:05 millert Exp $ +# $OpenBSD: genassym.cf,v 1.29 2006/01/10 01:17:28 martin Exp $ # # Copyright (c) 1982, 1990, 1993 @@ -164,3 +164,6 @@ export SYSCALLGATE export SYS_exit export SYS_execve export SYS_sigreturn + +# errno +export EFAULT diff --git a/sys/arch/hppa/hppa/locore.S b/sys/arch/hppa/hppa/locore.S index 32c9335a0dd..64d50e2f208 100644 --- a/sys/arch/hppa/hppa/locore.S +++ b/sys/arch/hppa/hppa/locore.S @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.S,v 1.151 2005/05/26 03:42:43 mickey Exp $ */ +/* $OpenBSD: locore.S,v 1.152 2006/01/10 01:17:28 martin Exp $ */ /* * Copyright (c) 1998-2004 Michael Shalayeff @@ -64,7 +64,6 @@ * Utah $Hdr: locore.s 1.63 95/01/20$ */ -#include <sys/errno.h> #include <sys/reboot.h> #include <machine/param.h> #include <machine/asm.h> |