From b414fd7c7603e5f5a206a480284e2bf96f3ab5c6 Mon Sep 17 00:00:00 2001 From: mcmartin Date: Mon, 7 Jan 2008 12:36:40 +0000 Subject: [PATCH] gcc doesn't like multiple typedefs git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2896 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/libs/strings/strintrn.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sc2/src/sc2code/libs/strings/strintrn.h b/sc2/src/sc2code/libs/strings/strintrn.h index 4bc694ba4..0f8722dc5 100644 --- a/sc2/src/sc2code/libs/strings/strintrn.h +++ b/sc2/src/sc2code/libs/strings/strintrn.h @@ -25,13 +25,13 @@ #include "memlib.h" #include "reslib.h" -typedef struct string_table_entry +struct string_table_entry { STRINGPTR data; int length; /* Internal NULs are allowed */ int index; struct string_table *parent; -} STRING_TABLE_ENTRY_DESC; +}; typedef struct string_table {