From 2baac5204b0023c5e3a6154869bd41a0ba79912f Mon Sep 17 00:00:00 2001 From: ws909 <37029098+ws909@users.noreply.github.com> Date: Thu, 9 Mar 2023 16:47:08 +0100 Subject: [PATCH] Move limits.h include from win32_window.c to window.c --- src/win32_window.c | 1 - src/window.c | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win32_window.c b/src/win32_window.c index 3dceebfc..2db61e15 100644 --- a/src/win32_window.c +++ b/src/win32_window.c @@ -31,7 +31,6 @@ #if defined(_GLFW_WIN32) -#include #include #include #include diff --git a/src/window.c b/src/window.c index 3c5e53cf..9aa0cbfe 100644 --- a/src/window.c +++ b/src/window.c @@ -30,6 +30,7 @@ #include "internal.h" +#include #include #include #include