diff options
author | Jakob Kaivo <jkk@ung.org> | 2022-09-08 11:11:06 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2022-09-08 11:11:06 -0400 |
commit | fd528d27b11f1d85dbf6afcd65b6bb4140e56070 (patch) | |
tree | aa92db77886e45ab1cbd0616eeaefa1129d98556 /cc.h | |
parent | 5a8d69ea869636e29807955d621fa45d8a21a8d8 (diff) |
handle predefined and command line macro definitions
Diffstat (limited to 'cc.h')
-rw-r--r-- | cc.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -0,0 +1,7 @@ +#ifndef CC_H +#define CC_H +#include <stdint.h> + +void error(const char *file, uintmax_t line, const char *fmt, ...); + +#endif |