diff options
-rw-r--r-- | usr.sbin/afs/src/lwp/process.S | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/afs/src/lwp/process.S b/usr.sbin/afs/src/lwp/process.S index 7bcbcece613..a65f476afb1 100644 --- a/usr.sbin/afs/src/lwp/process.S +++ b/usr.sbin/afs/src/lwp/process.S @@ -1,4 +1,4 @@ -/* $Header: /cvs/OpenBSD/src/usr.sbin/afs/src/lwp/Attic/process.S,v 1.1 1998/09/14 21:53:12 art Exp $ */ +/* $Header: /cvs/OpenBSD/src/usr.sbin/afs/src/lwp/Attic/process.S,v 1.2 1998/10/16 07:45:36 maja Exp $ */ /* $Source: /cvs/OpenBSD/src/usr.sbin/afs/src/lwp/Attic/process.S,v $ */ /* @@ -917,7 +917,11 @@ returnto: /* Code for MIPS R2000/R3000 architecture * Written by Zalman Stern April 30th, 1989. */ +#ifndef __OpenBSD__ #include <regdef.h> /* Allow use of symbolic names for registers. */ +#else +#include <machine/regdef.h> +#endif #define regspace 9 * 4 + 4 + 6 * 8 #define floats 0 #define registers floats + 6 * 8 |