summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Provos <provos@gmail.com>2003-10-25 21:49:25 +0000
committerNiels Provos <provos@gmail.com>2003-10-25 21:49:25 +0000
commite2f06f4f6a6b76e217cb290a6d47918521da6f1e (patch)
treece40a1fe20e42fe446850519fc5e0c9eb4d45ea8
parente9cd9b56a3fbf5f19f5f241c730666c7f3d89bcd (diff)
downloadlibevent-e2f06f4f6a6b76e217cb290a6d47918521da6f1e.tar.gz
fix license
svn:r88
-rw-r--r--compat/sys/_time.h6
-rw-r--r--compat/sys/queue.h12
2 files changed, 6 insertions, 12 deletions
diff --git a/compat/sys/_time.h b/compat/sys/_time.h
index 03b51246..8cabb0d5 100644
--- a/compat/sys/_time.h
+++ b/compat/sys/_time.h
@@ -13,11 +13,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
diff --git a/compat/sys/queue.h b/compat/sys/queue.h
index 269af413..c0956ddc 100644
--- a/compat/sys/queue.h
+++ b/compat/sys/queue.h
@@ -13,11 +13,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -96,12 +92,14 @@ struct name { \
#define SLIST_HEAD_INITIALIZER(head) \
{ NULL }
-
+
+#ifndef WIN32
#define SLIST_ENTRY(type) \
struct { \
struct type *sle_next; /* next element */ \
}
-
+#endif
+
/*
* Singly-linked List access methods.
*/