diff options
Diffstat (limited to 'libcpp/pch.c')
-rw-r--r-- | libcpp/pch.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libcpp/pch.c b/libcpp/pch.c index cddca83..3ff39d7 100644 --- a/libcpp/pch.c +++ b/libcpp/pch.c @@ -833,6 +833,8 @@ cpp_read_state (cpp_reader *r, const char *name, FILE *f, s->n_true = cpp_lookup (r, DSC("true")); s->n_false = cpp_lookup (r, DSC("false")); s->n__VA_ARGS__ = cpp_lookup (r, DSC("__VA_ARGS__")); + s->n__has_include__ = cpp_lookup (r, DSC("__has_include__")); + s->n__has_include_next__ = cpp_lookup (r, DSC("__has_include_next__")); } old_state = r->state; |