From 5ec78d75cea94fded1157f901f535b3da72a0e73 Mon Sep 17 00:00:00 2001 From: Maxim Biro Date: Sat, 20 Jul 2013 11:47:59 -0400 Subject: Fixed header inclusion for Windows --- other/DHT_bootstrap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'other/DHT_bootstrap.c') diff --git a/other/DHT_bootstrap.c b/other/DHT_bootstrap.c index deecda87..f795482b 100644 --- a/other/DHT_bootstrap.c +++ b/other/DHT_bootstrap.c @@ -7,15 +7,15 @@ * * gcc -O2 -Wall -o bootstrap_server ../core/Lossless_UDP.c ../core/network.c ../core/net_crypto.c ../core/Messenger.c ../core/DHT.c -lsodium DHT_bootstrap.c */ -#include -#include "../core/DHT.h" +#include "../core/DHT.h" //Sleep function (x = milliseconds) #ifdef WIN32 #define c_sleep(x) Sleep(1*x) #else #include +#include #define c_sleep(x) usleep(1000*x) #endif -- cgit v1.2.3