From c60d70ccb763754caebf5f107ec1b92c51d3ff3b Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Tue, 22 Oct 2024 14:53:55 +0200 Subject: win32: Add missing include for Sleep --- src/notification_proxy.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/notification_proxy.c b/src/notification_proxy.c index 60b2e03..c5f29f5 100644 --- a/src/notification_proxy.c +++ b/src/notification_proxy.c @@ -32,6 +32,7 @@ #include "common/debug.h" #ifdef WIN32 +#include #define sleep(x) Sleep(x*1000) #endif -- cgit v1.1-32-gdbae