- let's hope this works.

This commit is contained in:
Christoph Oelckers 2021-08-16 09:04:37 +02:00
parent bd1bbbd5c2
commit 2dceaa35a2
3 changed files with 8 additions and 13 deletions

View file

@ -33,12 +33,6 @@
**
*/
#ifdef _MSC_VER
#include <direct.h>
#else // !_MSC_VER
#include <unistd.h>
#include <sys/stat.h>
#endif // _MSC_VER
#include <string>
#include "resourcefile.h"
#include "wadext.h"

View file

@ -20,12 +20,6 @@
//--------------------------------------------------------------------------
//
#ifdef _MSC_VER
#include <direct.h>
#else // !_MSC_VER
#include <unistd.h>
#include <sys/stat.h>
#endif // _MSC_VER
#include <string.h>
#include <stdio.h>
#include <string>

View file

@ -1,7 +1,14 @@
#include <stdint.h>
#ifndef _MSC_VER
#ifdef _MSC_VER
#include <direct.h>
#else // !_MSC_VER
#include <unistd.h>
#include <sys/stat.h>
static char* strlwr(char* str)
{