Use standard type instead of ulong64

This commit is contained in:
Olaf Seibert
2021-01-19 10:42:59 +01:00
parent 0d2b0950be
commit 7705c33076
2 changed files with 4 additions and 5 deletions

2
util.h
View File

@@ -55,13 +55,11 @@ void my_searchenv(
/* Cover a few platform-dependencies */
#ifdef WIN32
typedef unsigned __int64 ulong64;
#define strdup _strdup
#define putenv _putenv
#define PATHSEP ";"
#else
typedef unsigned long long ulong64;
#define PATHSEP ":"
#endif