summaryrefslogtreecommitdiff
path: root/include/mpool.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1997-02-27 00:57:12 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1997-02-27 00:57:12 +0000
commitc719f3adbeef8431e14816cd669c8d4463553248 (patch)
tree8543f7a885b4c28b1fd7328b13bb7f4c860eddf2 /include/mpool.h
parent06041290ec3f891f15fa4e169fa0bf2cbcf07c96 (diff)
Protect against multiple inclusion.
Diffstat (limited to 'include/mpool.h')
-rw-r--r--include/mpool.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/mpool.h b/include/mpool.h
index 622d2c9a377..9897742583a 100644
--- a/include/mpool.h
+++ b/include/mpool.h
@@ -35,6 +35,9 @@
* @(#)mpool.h 8.2 (Berkeley) 7/14/94
*/
+#ifndef _MPOOL_H_
+#define _MPOOL_H_
+
#include <sys/queue.h>
/*
@@ -99,3 +102,5 @@ int mpool_close __P((MPOOL *));
void mpool_stat __P((MPOOL *));
#endif
__END_DECLS
+
+#endif