summaryrefslogtreecommitdiff
path: root/glcpp.h
diff options
context:
space:
mode:
Diffstat (limited to 'glcpp.h')
-rw-r--r--glcpp.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/glcpp.h b/glcpp.h
index 69b3b840ae..cee08faa98 100644
--- a/glcpp.h
+++ b/glcpp.h
@@ -31,15 +31,15 @@
/* Some data types used for parser value. */
-typedef struct node {
+typedef struct string_node {
const char *str;
- struct node *next;
-} node_t;
+ struct string_node *next;
+} string_node_t;
-typedef struct list {
- node_t *head;
- node_t *tail;
-} list_t;
+typedef struct string_list {
+ string_node_t *head;
+ string_node_t *tail;
+} string_list_t;
typedef struct glcpp_parser glcpp_parser_t;