gcc doesn't like multiple typedefs

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2896 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
mcmartin
2008-01-07 12:36:40 +00:00
parent 50891df161
commit b414fd7c76
+2 -2
View File
@@ -25,13 +25,13 @@
#include "memlib.h" #include "memlib.h"
#include "reslib.h" #include "reslib.h"
typedef struct string_table_entry struct string_table_entry
{ {
STRINGPTR data; STRINGPTR data;
int length; /* Internal NULs are allowed */ int length; /* Internal NULs are allowed */
int index; int index;
struct string_table *parent; struct string_table *parent;
} STRING_TABLE_ENTRY_DESC; };
typedef struct string_table typedef struct string_table
{ {