diff options
author | 1999-01-27 04:10:03 +0000 | |
---|---|---|
committer | 1999-01-27 04:10:03 +0000 | |
commit | 49192318a33e8ede93d9b6c6e8eb673c614a65a8 (patch) | |
tree | 0738ef1f089557b60095e6f072d6c77ed6b25b30 | |
parent | tzdata1999a from ftp://elsie.nci.nih.gov/pub (diff) | |
download | wireguard-openbsd-49192318a33e8ede93d9b6c6e8eb673c614a65a8.tar.xz wireguard-openbsd-49192318a33e8ede93d9b6c6e8eb673c614a65a8.zip |
Protect against multiple includes so that arc (and pmax too) make build
works again.
-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_ */ |