diff options
author | imp <imp@cvs.openbsd.org> | 1999-01-27 04:10:04 +0000 |
---|---|---|
committer | imp <imp@cvs.openbsd.org> | 1999-01-27 04:10:04 +0000 |
commit | 9fee6a7f3ec81de937c6277c7777d70e8280ea80 (patch) | |
tree | dbd5097b0fb25351e02c54823bfab9d6eabf712c /sys | |
parent | 5e1972e1f2bdaff11a26dce7e48b07495c634f5b (diff) |
Protect against multiple includes so that arc (and pmax too) make build
works again.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mips/include/signal.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/mips/include/signal.h b/sys/arch/mips/include/signal.h index 67629a03ef7..fab90e369a3 100644 --- a/sys/arch/mips/include/signal.h +++ b/sys/arch/mips/include/signal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: signal.h,v 1.1 1998/01/28 11:14:56 pefo Exp $ */ +/* $OpenBSD: signal.h,v 1.2 1999/01/27 04:10:03 imp Exp $ */ /* * Copyright (c) 1992, 1993 @@ -38,6 +38,9 @@ * @(#)signal.h 8.1 (Berkeley) 6/10/93 */ +#ifndef _MIPS_SIGNAL_H_ +#define _MIPS_SIGNAL_H_ + /* * Machine-dependent signal definitions */ @@ -65,3 +68,4 @@ struct sigcontext { }; #endif /* !_ANSI_SOURCE */ +#endif /* !_MIPS_SIGNAL_H_ */ |