From 1b59761a197e6fc3d8fbae4da006ca05d82cc132 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Wed, 26 Jun 2019 14:02:57 +0200 Subject: [PATCH] Only #include on macOS The `` include in `launcher.c` is only used to check if the executable is a symlink on macOS. Therefore it is not needed on other platforms. --- launcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher.c b/launcher.c index f34021e2c..171d7555a 100644 --- a/launcher.c +++ b/launcher.c @@ -15,12 +15,12 @@ #ifdef __APPLE__ #include #include +#include #else #include #endif #include #include -#include #define MIN(x, y) ((x) < (y)) ? (x) : (y) #define MAX_ARGC 1024