From 312265c395ff6602f6ef73c883f0216c73344e90 Mon Sep 17 00:00:00 2001 From: Stefan Date: Thu, 27 Jul 2023 13:00:07 +0200 Subject: [PATCH] Support of more platforms See http://aminet.net/package/dev/cross/oscar64 --- oscar64/MachineTypes.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/oscar64/MachineTypes.h b/oscar64/MachineTypes.h index 7badfad..77ea5d0 100644 --- a/oscar64/MachineTypes.h +++ b/oscar64/MachineTypes.h @@ -16,10 +16,10 @@ typedef __int64 int64; typedef unsigned __int64 uint64; #define MAXPATHLEN _MAX_PATH #else -#if __APPLE__ -#include "limits.h" -#else /* __linux__ */ +#if __linux__ #include "linux/limits.h" +#else /* __APPLE__ */ +#include "limits.h" #endif typedef long long int64; @@ -105,4 +105,4 @@ inline int64 int64max(int64 a, int64 b) inline int64 int64min(int64 a, int64 b) { return a < b ? a : b; -} \ No newline at end of file +}