diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2000-07-14 14:26:19 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2000-07-14 14:26:19 +0000 |
commit | 616c0873079a7b69e3e0971504951e6453013bc0 (patch) | |
tree | 8fb1805e345ac1b8eda4c87a8744218b392d522c | |
parent | 42ae8911463070716db54184906447265047a032 (diff) |
Remove unneeded definition
-rw-r--r-- | sys/arch/sun3/include/machdep.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/arch/sun3/include/machdep.h b/sys/arch/sun3/include/machdep.h index 196b6f569f7..b4fda3ac2e9 100644 --- a/sys/arch/sun3/include/machdep.h +++ b/sys/arch/sun3/include/machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.h,v 1.9 2000/03/02 23:01:46 todd Exp $ */ +/* $OpenBSD: machdep.h,v 1.10 2000/07/14 14:26:18 miod Exp $ */ /* * Copyright (c) 1994 Gordon W. Ross @@ -49,11 +49,6 @@ #define FC_CONTROL 3 /* sun control space XXX HP uses FC_PURGE instead */ -#define SPL1 (PSL_S | PSL_IPL1); /* used in locore.s - * XXX mvme68k does this in - * genassym.c - */ - /* Prototypes... */ struct frame; @@ -105,6 +100,9 @@ int fpu_emulate __P((struct frame *, struct fpframe *)); int getdfc __P((void)); int getsfc __P((void)); +/* Backward compatibility... */ +#define getsr _getsr + void** getvbr __P((void)); vm_offset_t high_segment_alloc __P((int npages)); |