stdio.h not needed
[fw/sdcc] / support / cpp / cpplib.h
index 7787f7d84d20005398c7fdf1d04e1a6c958e7294..e14d68341ef13561ba8967aca14cbd510e52d628 100644 (file)
@@ -274,7 +274,7 @@ struct cpp_reader {
 
 /* Make sure PFILE->token_buffer has space for at least N more characters. */
 #define CPP_RESERVE(PFILE, N) \
-  (CPP_WRITTEN (PFILE) + N > (PFILE)->token_buffer_size \
+  ((int) (CPP_WRITTEN (PFILE) + N) > (PFILE)->token_buffer_size \
    && (cpp_grow_buffer (PFILE, N), 0))
 
 /* Append string STR (of length N) to PFILE's output buffer.
@@ -649,7 +649,7 @@ extern cpp_hashnode* cpp_lookup PARAMS ((cpp_reader*, const U_CHAR*,
 /* Define the MS VC6 stuff - Some of these should also be defined for
 the other hosts but they are here until declared safe for all */
 
-#if defined(_MSC_VER)
+#if 1 // defined(_MSC_VER)
 
 void init_parse_file (cpp_reader *pfile) ;