blob: 6b4148005424da6ee910ccffa3a2ca5efbd5a7e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef CCC_H
#define CCC_H
#include <stdio.h>
#include <stdlib.h>
#define CCC_PANIC { perror("ccc"); exit(1); }
#define CCC_ERROR(format, ...) {\
fprintf(stderr, "line %ld: " format "\n", LINE __VA_OPT__(,) __VA_ARGS__);\
exit(1);\
}
#endif
|