]> git.sur5r.net Git - cc65/commitdiff
Added the __STDC_HOSTED__ macro.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 8 Oct 2009 15:00:25 +0000 (15:00 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 8 Oct 2009 15:00:25 +0000 (15:00 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4349 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/compile.c

index 6429e09f7eeab8da46e28c01acd4f965ed6c86af..c5024fb828db8c819d7336d29665dddcf9c72e3e 100644 (file)
@@ -334,6 +334,10 @@ void Compile (const char* FileName)
     strftime (TimeStr, sizeof (TimeStr), "\"%H:%M:%S\"", TM);
     DefineTextMacro ("__DATE__", DateStr);
     DefineTextMacro ("__TIME__", TimeStr);
+                    
+    /* Other standard macros */
+    /* DefineNumericMacro ("__STDC__", 1);      <- not now */
+    DefineNumericMacro ("__STDC_HOSTED__", 1);
 
     /* Initialize the literal pool */
     InitLiteralPool ();