vsnprintf is defined as _vsnprintf on MSVC
authorborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 23 Feb 2003 21:30:11 +0000 (21:30 +0000)
committerborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 23 Feb 2003 21:30:11 +0000 (21:30 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2299 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
sdcc_vc_in.h

index bf50a59b5589d8b830a59c6e9b3568c9f3c7d8ed..bf05822ebd94846a303d365ab9834c1e645b0cf2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-02-23  Borut Razem <borut.razem@siol.net>
+
+       * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
+       because NDEBUG is defined (see man assert)
+       * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
+
 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann@web.de>
 
        * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
index 467d979bcd9ef239173cccb8d039ec560ee83288..32b58b084a0069a734b182dc464b020599e5fdaf 100644 (file)
 // #undef HAVE_ENDIAN_H
 
 #undef HAVE_STRERROR
-#undef HAVE_VSNPRINTF
-#undef HAVE_SNPRINTF
-#define HAVE_VSPRINTF
+#define HAVE_VSNPRINTF
+#define vsnprintf _vsnprintf   
+#undef HAVE_SPRINTF
+#undef HAVE_VSPRINTF
 
 #undef OPT_DISABLE_MCS51
 #undef OPT_DISABLE_GBZ80