about summary refs log tree commit homepage
path: root/bsd/simpleq.h
diff options
context:
space:
mode:
Diffstat (limited to 'bsd/simpleq.h')
-rw-r--r--bsd/simpleq.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/bsd/simpleq.h b/bsd/simpleq.h
index bce207c..a0b4d99 100644
--- a/bsd/simpleq.h
+++ b/bsd/simpleq.h
@@ -3,14 +3,6 @@
  * sys/queue.h header.  The original (BSD) license terms are
  * retained (see below).
  */
-#include <sys/queue.h>
-
-/*
- * Some systems have STAILQ instead of SIMPLEQ, and presumably
- * some have SIMPLEQ instead of STAILQ.  And of course some systems
- * have both..
- */
-#ifndef SIMPLEQ_HEAD
 
 /*-
  * Copyright (c) 1991, 1993
@@ -110,5 +102,3 @@ struct {                                                                \
 #define        SIMPLEQ_EMPTY(head)                ((head)->sqh_first == NULL)
 #define        SIMPLEQ_FIRST(head)                ((head)->sqh_first)
 #define        SIMPLEQ_NEXT(elm, field)        ((elm)->field.sqe_next)
-
-#endif /* missing SIMPLEQ* */