Kaydet (Commit) 7605a786 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Avoid reserved identifier

Change-Id: I3df7e42b69e3900eae8d10d28a97d776fabd9f4b
üst 5318e60b
...@@ -62,11 +62,11 @@ typedef int Bool; ...@@ -62,11 +62,11 @@ typedef int Bool;
#define False 0 #define False 0
#define True 1 #define True 1
typedef struct _if_parser { typedef struct if_parser {
struct { /* functions */ struct { /* functions */
const char *(*handle_error) (struct _if_parser *, const char *, const char *); const char *(*handle_error) (struct if_parser *, const char *, const char *);
int (*eval_variable) (struct _if_parser *, const char *, size_t); int (*eval_variable) (struct if_parser *, const char *, size_t);
int (*eval_defined) (struct _if_parser *, const char *, size_t); int (*eval_defined) (struct if_parser *, const char *, size_t);
} funcs; } funcs;
char *data; char *data;
} IfParser; } IfParser;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment