* cppinit.c (cpp_init_builtins): Use _cpp_define_builtin
authorNeil Booth <neil@gcc.gnu.org>
Sun, 11 May 2003 13:58:10 +0000 (13:58 +0000)
committerNeil Booth <neil@gcc.gnu.org>
Sun, 11 May 2003 13:58:10 +0000 (13:58 +0000)
From-SVN: r66689

gcc/cppinit.c

index 96ac9a46bd2aaa8de7e57d1f7e1f9cc4bc250dc2..a78edbaacf735af5bb7c13cd2a70eca8c757b181 100644 (file)
@@ -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");