summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2000-03-23 14:59:24 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2000-03-23 14:59:24 +0000
commitc29625abecde8472b3584091f7b52acba77fa46d (patch)
treef43c530e3e35b1e8bdd365fdb5e9d66a5c9b6184 /sys
parent7f33fa94053613b276a8dd8cbc850276ac321210 (diff)
Protect from multiple include.
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/timeout.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/sys/timeout.h b/sys/sys/timeout.h
index d1981a40655..f95f95a49f9 100644
--- a/sys/sys/timeout.h
+++ b/sys/sys/timeout.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: timeout.h,v 1.3 2000/03/23 11:24:42 art Exp $ */
+/* $OpenBSD: timeout.h,v 1.4 2000/03/23 14:59:23 art Exp $ */
/*
* Copyright (c) 2000 Artur Grabowski <art@openbsd.org>
* All rights reserved.
@@ -27,6 +27,9 @@
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#ifndef _SYS_TIMEOUT_H_
+#define _SYS_TIMEOUT_H_
+
#include <sys/queue.h>
/*
@@ -102,3 +105,4 @@ int timeout_hardclock_update __P((void));
*/
extern int ntimeout;
extern struct timeout *timeouts;
+#endif /* _SYS_TIMEOUT_H_ */