From 140249ad0c49253bbc5b0d18ff1ea448050cdbf4 Mon Sep 17 00:00:00 2001 From: Christophe CURIS Date: Sun, 12 May 2013 00:24:50 +0200 Subject: [PATCH] WINGs: Added include for header defining the funcion provided by the file This allows the compiler to warn if the definition in the file is no in line with what is exposed to the users of the function through the header definition. --- WINGs/usleep.c | 1 + 1 file changed, 1 insertion(+) diff --git a/WINGs/usleep.c b/WINGs/usleep.c index fcdf3277..99d07912 100644 --- a/WINGs/usleep.c +++ b/WINGs/usleep.c @@ -2,6 +2,7 @@ #include #include +#include "WUtil.h" #include "wconfig.h" void wusleep(unsigned int usec)