header file compatible with the preprocessor -Wundef option
* src/SDCCmain.c (main): abort compilation if preprocessor reports
failure (fixes bug #941458)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3322
4a8a32a2-be11-0410-ad9d-
d568d2c75423
+2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
+
+ * device/include/string.h: applied Stas Sergeev's patch to make this
+ header file compatible with the preprocessor -Wundef option
+ * src/SDCCmain.c (main): abort compilation if preprocessor reports
+ failure (fixes bug #941458)
+
2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
* src/SDCCopt.c (killDeadCode): fixed bug #907733
extern void *memset (void *, unsigned char , size_t ) ;
extern void *memmove (void *, void *, size_t ) ;
-#if SDCC_ds390
+#ifdef SDCC_ds390
extern void xdata * memcpyx(void xdata *, void xdata *, int) _naked;
#endif
yyparse ();
- pclose(yyin);
+ if (pclose(yyin))
+ fatalError = 1;
deleteSetItem(&pipeSet, yyin);
if (fatalError) {