diff options
| author | Michael Forney <mforney@mforney.org> | 2021-04-12 20:34:50 -0700 | 
|---|---|---|
| committer | Michael Forney <mforney@mforney.org> | 2022-01-22 11:36:12 -0800 | 
| commit | 65d860fade5a39fb62b0b39081edbce199e40d58 (patch) | |
| tree | 8b9f39a6aa9224efc4aae093061ddfe577a3c196 /util.h | |
| parent | 0bc29c89c13a61806a28f054f04a01afd8242669 (diff) | |
| download | cproc-65d860fade5a39fb62b0b39081edbce199e40d58.tar.xz | |
Port to C99
Diffstat (limited to 'util.h')
| -rw-r--r-- | util.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -27,7 +27,7 @@ extern char *argv0;  #define ALIGNUP(x, n) ALIGNDOWN((x) + (n) - 1, n)  void warn(const char *, ...); -_Noreturn void fatal(const char *fmt, ...); +void fatal(const char *fmt, ...);  void *reallocarray(void *, size_t, size_t);  void *xreallocarray(void *, size_t, size_t); | 
