#include <string.h>
#include <errno.h>
-#ifdef __WATCOMC__
-/* Watcom has the file in the wrong directory */
+#if defined(__WATCOMC__) || defined(_MSC_VER)
+/* The Windows compilers have the file in the wrong directory */
# include <sys/utime.h>
#else
-# include <sys/types.h> /* FreeBSD needs this */
+# include <sys/types.h> /* FreeBSD needs this */
# include <utime.h>
#endif
#include <time.h>
/*****************************************************************************/
-/* Code */
+/* Code */
/*****************************************************************************/
-
+
static const char* GetModule (const char* Name)
/* Get a module name from the file name */
{
#include <string.h>
#include <ctype.h>
#include <errno.h>
-#ifdef __WATCOMC__
+#if defined(__WATCOMC__) || defined(_MSC_VER)
# include <process.h> /* DOS, OS/2 and Windows */
#else
# include "spawn.h" /* All others */