]> mj.ucw.cz Git - libucw.git/blobdiff - lib/lists.h
avoid compiler warnings with debugging turned off
[libucw.git] / lib / lists.h
index fa9599aa9f8e943b527d9d200ea3e686d3bcb158..756085f7a070af7086d10bf60af59e9f9becba7f 100644 (file)
@@ -1,11 +1,14 @@
 /*
- *     Sherlock Library -- Linked Lists
+ *     UCW Library -- Linked Lists
  *
  *     (c) 1997--1999 Martin Mares <mj@ucw.cz>
+ *
+ *     This software may be freely distributed and used according to the terms
+ *     of the GNU Lesser General Public License.
  */
 
-#ifndef _SHERLOCK_LISTS_H
-#define _SHERLOCK_LISTS_H
+#ifndef _UCW_LISTS_H
+#define _UCW_LISTS_H
 
 /*
  * I admit the list structure is very tricky and also somewhat awkward,
@@ -50,7 +53,7 @@ void add_tail_list(list *, list *);
 void init_list(list *);
 void insert_node(node *, node *);
 
-#if !defined(_SHERLOCK_LISTS_C) && defined(__GNUC__)
+#if !defined(_UCW_LISTS_C) && defined(__GNUC__)
 #define LIST_INLINE extern inline
 #include "lib/lists.c"
 #undef LIST_INLINE