plug-ins: remove unnecessary Windows specific code in tinyscheme

Removal of the snprintf define was also part of the UCRT Windows patch
in MINGW. Although it builds fine without this change, there is no need
anymore to redefine snprintf. In addition, I seem to remember that
_snprintf had a shortcoming.

So let's remove the Windows specific code, since it works fine without it.
This commit is contained in:
Jacob Boerema 2022-05-17 17:12:35 -04:00
parent ef817dc452
commit e268d38fb1
1 changed files with 0 additions and 6 deletions

View File

@ -28,12 +28,6 @@
#if HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef WIN32
# include <io.h>
#endif
#ifdef WIN32
#define snprintf _snprintf
#endif
#if USE_DL
# include "dynload.h"
#endif