Headers: Guard inclusion of mLib headers.
[mLib] / dspool.h
index cc4f97f..47ca6e2 100644 (file)
--- a/dspool.h
+++ b/dspool.h
@@ -1,13 +1,11 @@
 /* -*-c-*-
  *
- * $Id: dspool.h,v 1.1 1999/05/21 22:15:26 mdw Exp $
- *
  * Provide pools of strings
  *
  * (c) 1999 Straylight/Edgeware
  */
 
-/*----- Licensing notice --------------------------------------------------* 
+/*----- Licensing notice --------------------------------------------------*
  *
  * This file is part of the mLib utilities library.
  *
  * it under the terms of the GNU Library General Public License as
  * published by the Free Software Foundation; either version 2 of the
  * License, or (at your option) any later version.
- * 
+ *
  * mLib is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU Library General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU Library General Public
  * License along with mLib; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  */
 
-/*----- Revision history --------------------------------------------------* 
- *
- * $Log: dspool.h,v $
- * Revision 1.1  1999/05/21 22:15:26  mdw
- * Dynamic string pool system, based on an idea from the `sw-tools'
- * project.  Could do with more work to make it really good.
- *
- */
-
-#ifndef DSPOOL_H
-#define DSPOOL_H
+#ifndef MLIB_DSPOOL_H
+#define MLIB_DSPOOL_H
 
 #ifdef __cplusplus
   extern "C" {
 
 /*----- Header files ------------------------------------------------------*/
 
-#include "dstr.h"
-#include "sub.h"
+#ifndef MLIB_DSTR_H
+#  include "dstr.h"
+#endif
+
+#ifndef MLIB_SUB_H
+#  include "sub.h"
+#endif
 
 /*----- Data structures ---------------------------------------------------*/