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 71659ab19774bf82ddf0264b68354fe36db8a120
parent f02f88295c7b760f3cdfa11826c16fb997950b0b
Author: Joris Vink <joris@coders.se>
Date:   Sat,  7 Jul 2018 13:23:43 +0200

correct includes

Diffstat:
src/python.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/python.c b/src/python.c @@ -15,7 +15,8 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include <sys/param.h> +#include <sys/types.h> +#include <sys/socket.h> #include <libgen.h>