kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 5fa964c5c0c9be9cd484e9d6af73669726255be8
parent 67c3bd84baa405601c43c4f07c385573b95943e0
Author: Joris Vink <joris@coders.se>
Date:   Fri,  1 Aug 2014 16:10:37 +0200

gettimeofday() requires sys/time.h

Diffstat:
src/utils.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/utils.c b/src/utils.c @@ -14,6 +14,8 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include <sys/time.h> + #include <limits.h> #include "kore.h"