Needs a touch more

This commit is contained in:
2018-07-16 23:38:28 +01:00
parent 61afa57339
commit a7b33fd4dc
10 changed files with 59 additions and 12 deletions

5
ph7.h
View File

@@ -166,11 +166,16 @@ typedef struct ph7 ph7;
#if !defined(SYMISC_STANDARD_DEFS)
#define SYMISC_STANDARD_DEFS
#if defined (_WIN32) || defined (WIN32) || defined(__MINGW32__) || defined (_MSC_VER) || defined (_WIN32_WCE)
#include <direct.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
/* Windows Systems */
#if !defined(__WINNT__)
#define __WINNT__
#endif
#else
#include <libgen.h>
/*
* By default we will assume that we are compiling on a UNIX systems.
* Otherwise the OS_OTHER directive must be defined.