diff options
author | thing1 <thing1@seacrossedlovers.xyz> | 2024-09-16 12:06:09 +0100 |
---|---|---|
committer | thing1 <thing1@seacrossedlovers.xyz> | 2024-09-16 12:06:09 +0100 |
commit | 9eafce19945f858649eaac8eabfee9ec1857c1cd (patch) | |
tree | b06cac968dc4319bbd4e5dd5a99e1b049af67e87 /comp/lucas-standen-NEA/code2/util.c | |
parent | f35cd6c1d15ce31cd5f1d1d578a7a2a4880c2179 (diff) |
finished the compiler, moving on to advaced command line tool
Diffstat (limited to 'comp/lucas-standen-NEA/code2/util.c')
-rw-r--r-- | comp/lucas-standen-NEA/code2/util.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/comp/lucas-standen-NEA/code2/util.c b/comp/lucas-standen-NEA/code2/util.c index 5cda33e..a1e8f15 100644 --- a/comp/lucas-standen-NEA/code2/util.c +++ b/comp/lucas-standen-NEA/code2/util.c @@ -1,9 +1,8 @@ #include <stdlib.h> #include <stdio.h> +#include <string.h> void die(char *msg){ fprintf(stderr, "zpy: %s\n", msg); exit(1); - } - |