Add multiple-inclusion guard.
authorBruno Haible <bruno@clisp.org>
Wed, 24 Aug 2005 11:04:19 +0000 (11:04 +0000)
committerBruno Haible <bruno@clisp.org>
Wed, 24 Aug 2005 11:04:19 +0000 (11:04 +0000)
lib/ChangeLog
lib/lock.h
lib/tls.h

index b1c6ea8f6f0f60b3963b4fbffe7adc5debe1e4b9..add4eae59cf0d26a2a90c15b63fc23fcd8c957e7 100644 (file)
@@ -1,3 +1,8 @@
+2005-08-21  Bruno Haible  <bruno@clisp.org>
+
+       * lock.h: Add multiple inclusion guard.
+       * tls.h: Add multiple inclusion guard.
+
 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
 
        * regex.h (REG_NOSYS)
index f82e4a32f0a8b90209528511b9a82bf07cd5a701..be99139dce7a9e787d5c05564cbe0e38fa950928 100644 (file)
@@ -59,6 +59,9 @@
 */
 
 
+#ifndef _LOCK_H
+#define _LOCK_H
+
 /* ========================================================================= */
 
 #if USE_POSIX_THREADS
@@ -792,3 +795,7 @@ typedef int gl_once_t;
     while (0)
 
 #endif
+
+/* ========================================================================= */
+
+#endif /* _LOCK_H */
index 3ca95041ba70721fe30ca864c1bc64aada5301ad..fadce76fb0e442ef4a73101e11bea1b3825ddbd8 100644 (file)
--- a/lib/tls.h
+++ b/lib/tls.h
@@ -38,6 +38,9 @@
 */
 
 
+#ifndef _TLS_H
+#define _TLS_H
+
 /* ========================================================================= */
 
 #if USE_POSIX_THREADS
@@ -308,3 +311,7 @@ typedef struct
     (void)0
 
 #endif
+
+/* ========================================================================= */
+
+#endif /* _TLS_H */