cparser.bootstrap2 depends on cparser.bootstrap.
[cparser] / token_t.h
index 2f2918d..e0adbab 100644 (file)
--- a/token_t.h
+++ b/token_t.h
@@ -54,7 +54,8 @@ typedef struct source_position_t source_position_t;
 struct source_position_t {
        const char *input_name;
        unsigned    lineno;
-       unsigned    colno;
+       unsigned    colno            : 31;
+       unsigned    is_system_header : 1;
 };
 
 /* position used for "builtin" declarations/types */