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 b400fdcd9f5f80a3167870e8eab1206fc59c9190
parent fd1ab5879d8137fe79d26f6629aae06fdf5f9775
Author: Joris Vink <joris@coders.se>
Date:   Thu, 29 Nov 2018 09:11:31 +0100

include sys/param.h in python.c

Diffstat:
src/python.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

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