From 0be19cb95993b47085f4ad292752fdd2d2b461e2 Mon Sep 17 00:00:00 2001 From: Meep-Eep Date: Wed, 27 Jun 2007 21:00:10 +0000 Subject: [PATCH] Make 'struct queue' anonymous; conflict with /usr/include/sys/stream.h on SunOS. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2790 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/displist.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc2/src/sc2code/displist.h b/sc2/src/sc2code/displist.h index a7066f2ef..4876b67b0 100644 --- a/sc2/src/sc2code/displist.h +++ b/sc2/src/sc2code/displist.h @@ -42,7 +42,7 @@ typedef struct link HLINK succ; } LINK; -typedef struct queue +typedef struct /* queue */ { HLINK head; HLINK tail;