summaryrefslogtreecommitdiff
path: root/soltools
diff options
context:
space:
mode:
Diffstat (limited to 'soltools')
-rw-r--r--soltools/mkdepend/ifparser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/soltools/mkdepend/ifparser.h b/soltools/mkdepend/ifparser.h
index dbc1e86ac3a6..490ba513b0bc 100644
--- a/soltools/mkdepend/ifparser.h
+++ b/soltools/mkdepend/ifparser.h
@@ -62,11 +62,11 @@ typedef int Bool;
#define False 0
#define True 1
-typedef struct _if_parser {
+typedef struct if_parser {
struct { /* functions */
- const char *(*handle_error) (struct _if_parser *, const char *, const char *);
- int (*eval_variable) (struct _if_parser *, const char *, size_t);
- int (*eval_defined) (struct _if_parser *, const char *, size_t);
+ const char *(*handle_error) (struct if_parser *, const char *, const char *);
+ int (*eval_variable) (struct if_parser *, const char *, size_t);
+ int (*eval_defined) (struct if_parser *, const char *, size_t);
} funcs;
char *data;
} IfParser;