From 6c237850e90dce317ede7b0d4e53125df15ab62b Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 16 Sep 2020 19:35:43 -0700 Subject: WIP --- utils.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'utils.h') diff --git a/utils.h b/utils.h index 8588d24..28bfe05 100644 --- a/utils.h +++ b/utils.h @@ -17,8 +17,6 @@ #define check(cond, ...) do { if (!(cond)) { fprintf(stderr, __VA_ARGS__); fwrite("\n", 1, 1, stderr); _exit(1); } } while(0) #define debug(...) do { if (verbose) fprintf(stderr, __VA_ARGS__); } while(0) -char *readfile(int fd); -void freefile(char *f); char unescapechar(const char *escaped, const char **end); const char *after_name(const char *str); const char *after_spaces(const char *str); -- cgit v1.2.3