chiark / gitweb /
Change header file guard names.
[mLib] / dstr.h
diff --git a/dstr.h b/dstr.h
index 3ef27ea01df2de0de709f4f99c678b89a0d4f1d1..cde6b6f3f2a2301c7365b2fb69c49b4ae4ceeafa 100644 (file)
--- a/dstr.h
+++ b/dstr.h
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: dstr.h,v 1.8 1999/07/14 19:45:24 mdw Exp $
+ * $Id: dstr.h,v 1.9 1999/12/10 23:42:04 mdw Exp $
  *
  * Handle dynamically growing strings
  *
@@ -30,6 +30,9 @@
 /*----- Revision history --------------------------------------------------*
  *
  * $Log: dstr.h,v $
+ * Revision 1.9  1999/12/10 23:42:04  mdw
+ * Change header file guard names.
+ *
  * Revision 1.8  1999/07/14 19:45:24  mdw
  * Prevent some macros from re-evaluating their arguments.
  *
@@ -57,8 +60,8 @@
  *
  */
 
-#ifndef DSTR_H
-#define DSTR_H
+#ifndef MLIB_DSTR_H
+#define MLIB_DSTR_H
 
 #ifdef __cplusplus
   extern "C" {
@@ -130,7 +133,7 @@ extern void dstr_destroy(dstr */*d*/);
 
 /* --- @dstr_reset@ --- *
  *
- * Arguments:  @dstr *d@ = pointer to a dynaimc string block
+ * Arguments:  @dstr *d@ = pointer to a dynamic string block
  *
  * Returns:    ---
  *