Line 0
Link Here
|
|
|
1 |
--- include/LDL.h.orig Fri Dec 13 11:54:46 2002 |
2 |
+++ include/LDL.h Fri Dec 13 11:55:01 2002 |
3 |
@@ -20,8 +20,6 @@ |
4 |
# endif |
5 |
# include <string.h> |
6 |
|
7 |
-#if !defined(HAVE_INSQUE) && !defined(HAVE_REMQUE) |
8 |
-/* the insque, remque are not defined, we need to define the type for them */ |
9 |
typedef struct qelem |
10 |
{ |
11 |
struct qelem* q_forw,* q_back; |
12 |
@@ -49,8 +47,6 @@ |
13 |
if (elem->q_forw) elem->q_forw->q_back = elem->q_back; |
14 |
if (elem->q_back) elem->q_back->q_forw = elem->q_forw; |
15 |
} |
16 |
-#endif |
17 |
- |
18 |
#endif |
19 |
|
20 |
|