From: Guus Sliepen Date: Sun, 17 Jul 2011 16:02:56 +0000 (+0200) Subject: Fix declaration of usleep(). X-Git-Tag: release-1.1pre2~4 X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=c6c989cfa175154f4cd3830c5a77fbd2071f52af Fix declaration of usleep(). --- diff --git a/src/dropin.h b/src/dropin.h index 7b0050d6..3617b70e 100644 --- a/src/dropin.h +++ b/src/dropin.h @@ -42,7 +42,7 @@ extern int gettimeofday(struct timeval *, void *); #endif #ifndef HAVE_USLEEP -extern void usleep(long long usec); +extern int usleep(long long usec); #endif #endif /* __DROPIN_H__ */