Commit 82244e3e by Neil Booth

* cppinit.c (cpp_init_builtins): Use _cpp_define_builtin

From-SVN: r66689
parent 6e270179
......@@ -358,9 +358,9 @@ cpp_init_builtins (pfile, hosted)
_cpp_define_builtin (pfile, "__STDC_VERSION__ 199901L");
if (hosted)
cpp_define (pfile, "__STDC_HOSTED__=1");
_cpp_define_builtin (pfile, "__STDC_HOSTED__=1");
else
cpp_define (pfile, "__STDC_HOSTED__=0");
_cpp_define_builtin (pfile, "__STDC_HOSTED__=0");
if (CPP_OPTION (pfile, objc))
_cpp_define_builtin (pfile, "__OBJC__ 1");
......
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