(Very) initial working OpenBSD port

This commit is contained in:
Michael McConville
2015-09-18 00:46:48 -04:00
parent 445222e48c
commit a9a5a539cf
14 changed files with 984 additions and 9 deletions

View File

@ -55,7 +55,7 @@ inline int String_eq(const char* s1, const char* s2) {
char** String_split(const char* s, char sep, int* n) {
*n = 0;
const int rate = 10;
char** out = calloc(rate, sizeof(char**));
char** out = calloc(rate, sizeof(char*));
int ctr = 0;
int blocks = rate;
char* where;