Support of more platforms

See http://aminet.net/package/dev/cross/oscar64
This commit is contained in:
Stefan 2023-07-27 13:00:07 +02:00 committed by GitHub
parent 4c5a9c3b70
commit 312265c395
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,10 +16,10 @@ typedef __int64 int64;
typedef unsigned __int64 uint64; typedef unsigned __int64 uint64;
#define MAXPATHLEN _MAX_PATH #define MAXPATHLEN _MAX_PATH
#else #else
#if __APPLE__ #if __linux__
#include "limits.h"
#else /* __linux__ */
#include "linux/limits.h" #include "linux/limits.h"
#else /* __APPLE__ */
#include "limits.h"
#endif #endif
typedef long long int64; typedef long long int64;