From 1e07ea71d3f564beb7f71dd868499eef996ffbae Mon Sep 17 00:00:00 2001 From: James Buren Date: Mon, 3 Nov 2014 16:16:03 -0600 Subject: [PATCH] win32: fix implicit function warning This includes windows.h to fix a warning about an implicit function usage of ExitProcess(). --- win32/lib/crt1.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/win32/lib/crt1.c b/win32/lib/crt1.c index 5e80bd3c..0be446f3 100644 --- a/win32/lib/crt1.c +++ b/win32/lib/crt1.c @@ -2,6 +2,8 @@ // crt1.c #include +// For ExitProcess +#include #define __UNKNOWN_APP 0 #define __CONSOLE_APP 1 -- 2.11.4.GIT