From 0079935bd6485d42e20cf8e1f4ecc1e81641685c Mon Sep 17 00:00:00 2001 From: Marco Cawthorne Date: Sun, 7 May 2023 08:32:54 -0700 Subject: [PATCH] limits.h inclusion fix for BSD. --- src/rewise.c | 2 +- src/wisescript.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rewise.c b/src/rewise.c index 9571e03..3adef2d 100644 --- a/src/rewise.c +++ b/src/rewise.c @@ -29,7 +29,7 @@ // PATH_MAX, NAME_MAX #ifdef __linux__ #include -#elif defined(__CYGWIN__) || defined(_WIN32) || defined(_WIN64) +#else #include #endif diff --git a/src/wisescript.c b/src/wisescript.c index dcb5aa5..4cc1019 100644 --- a/src/wisescript.c +++ b/src/wisescript.c @@ -20,7 +20,7 @@ #ifdef __linux__ #include -#elif defined(__CYGWIN__) || defined(_WIN32) || defined(_WIN64) +#else #include #endif