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 fd2cda5a433f1f5ebfb1cecff7ce2e4f02940768
parent 5421b7726e3b641ab151c4a33a1e0904e56dff0a
Author: Joris Vink <joris@coders.se>
Date:   Fri, 27 Nov 2020 16:34:38 +0100

include inttypes.h in json.c

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

diff --git a/src/json.c b/src/json.c @@ -17,6 +17,7 @@ #include <sys/types.h> #include <float.h> +#include <inttypes.h> #include <string.h> #include <stdio.h> #include <stdarg.h>