From 11e6055bdfc1cb97d8b575269919c9f15fca43b5 Mon Sep 17 00:00:00 2001 From: millert <> Date: Thu, 27 Feb 1997 00:57:11 +0000 Subject: [PATCH] Protect against multiple inclusion. --- src/include/mpool.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/include/mpool.h b/src/include/mpool.h index 622d2c9a..98977425 100644 --- a/src/include/mpool.h +++ b/src/include/mpool.h @@ -35,6 +35,9 @@ * @(#)mpool.h 8.2 (Berkeley) 7/14/94 */ +#ifndef _MPOOL_H_ +#define _MPOOL_H_ + #include /* @@ -99,3 +102,5 @@ int mpool_close __P((MPOOL *)); void mpool_stat __P((MPOOL *)); #endif __END_DECLS + +#endif