forked from github/server
fix missing includes
This commit is contained in:
parent
ac3401431c
commit
a32e1cd127
2
cutest
2
cutest
|
@ -1 +1 @@
|
||||||
Subproject commit 8246a55111430b3f409a1d56aefd456f6b7ada4e
|
Subproject commit 0b718dde0939afdd1f424f5030fc1621d38ba6db
|
|
@ -2,15 +2,18 @@
|
||||||
#include <CuTest.h>
|
#include <CuTest.h>
|
||||||
#include <stream.h>
|
#include <stream.h>
|
||||||
#include <memstream.h>
|
#include <memstream.h>
|
||||||
#include "json.h"
|
|
||||||
#include "tests.h"
|
|
||||||
|
|
||||||
|
#include <kernel/types.h>
|
||||||
#include <kernel/region.h>
|
#include <kernel/region.h>
|
||||||
#include <kernel/terrain.h>
|
#include <kernel/terrain.h>
|
||||||
|
|
||||||
#include <cJSON.h>
|
#include "json.h"
|
||||||
|
#include "tests.h"
|
||||||
|
|
||||||
|
#include <cJSON.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <ctype.h>
|
||||||
|
|
||||||
static char *strip(char *str) {
|
static char *strip(char *str) {
|
||||||
char *s = str, *b = str, *e = str;
|
char *s = str, *b = str, *e = str;
|
||||||
|
|
Loading…
Reference in New Issue