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 d2cfc2b55403e8162e07c5f05a32a09359535bf8
parent a43d968f0fb93af5c84d34d5d03dc326f60f286b
Author: Joris Vink <joris@coders.se>
Date:   Tue,  7 Feb 2017 23:21:18 +0100

shuffle headers around.

Diffstat:
src/http.c | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/http.c b/src/http.c @@ -16,16 +16,16 @@ #include <sys/param.h> +#include <sys/socket.h> +#include <netinet/in.h> + #include <ctype.h> +#include <fcntl.h> #include <inttypes.h> +#include <time.h> #include <stdio.h> #include <string.h> -#include <fcntl.h> -#include <unistd.h> -#include <sys/socket.h> -#include <netinet/in.h> - #include "kore.h" #include "http.h"