fire/output.h

8 lines
108 B
C
Raw Normal View History

2019-12-12 23:46:24 +00:00
#ifndef OUTP_H
#define OUTP_H
2019-12-13 03:39:35 +00:00
#include <stdio.h>
2019-12-12 23:46:24 +00:00
2020-09-17 11:42:48 +00:00
#define EPRINT(...) fprintf(stderr, __VA_ARGS__);
2019-12-12 23:46:24 +00:00
#endif