fire/output.h

8 lines
108 B
C
Raw Permalink Normal View History

2019-12-12 15:46:24 -08:00
#ifndef OUTP_H
#define OUTP_H
2019-12-12 19:39:35 -08:00
#include <stdio.h>
2019-12-12 15:46:24 -08:00
2020-09-17 04:42:48 -07:00
#define EPRINT(...) fprintf(stderr, __VA_ARGS__);
2019-12-12 15:46:24 -08:00
#endif