diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-11-28 22:02:17 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-11-28 22:02:17 +0000 |
commit | 55dc395e79bd4e950c8686622a2d46560a99cd70 (patch) | |
tree | 89bd5ad46bba6ddbb392ac98b519b171ea43711b | |
parent | 5e58a229e995a7636c1fed0e2d5fa8dc4176a4f3 (diff) |
Remove older-than-gramps poor man's assym.h defines; .S files do not even need
these constants.
-rw-r--r-- | sys/arch/mips64/include/signal.h | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/sys/arch/mips64/include/signal.h b/sys/arch/mips64/include/signal.h index 0bc65a3719b..26298319104 100644 --- a/sys/arch/mips64/include/signal.h +++ b/sys/arch/mips64/include/signal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: signal.h,v 1.3 2005/08/07 07:29:44 miod Exp $ */ +/* $OpenBSD: signal.h,v 1.4 2005/11/28 22:02:16 miod Exp $ */ /* * Copyright (c) 1992, 1993 @@ -37,7 +37,6 @@ #ifndef _MIPS_SIGNAL_H_ #define _MIPS_SIGNAL_H_ -#if !defined(__LANGUAGE_ASSEMBLY) #include <sys/types.h> /* @@ -68,16 +67,4 @@ struct sigcontext { }; #endif /* !_ANSI_SOURCE */ -#else /* __LANGUAGE_ASSEMBLY */ -#define SC_ONSTACK (0 * REGSZ) -#define SC_MASK (1 * REGSZ) -#define SC_PC (2 * REGSZ) -#define SC_REGS (3 * REGSZ) -#define SC_MULLO (35 * REGSZ) -#define SC_MULHI (36 * REGSZ) -#define SC_FPREGS (37 * REGSZ) -#define SC_FPUSED (70 * REGSZ) -#define SC_FPC_EIR (71 * REGSZ) -#endif /* __LANGUAGE_ASSEMBLY */ - #endif /* !_MIPS_SIGNAL_H_ */ |