fire/output.h
2020-09-17 11:42:48 +00:00

8 lines
108 B
C

#ifndef OUTP_H
#define OUTP_H
#include <stdio.h>
#define EPRINT(...) fprintf(stderr, __VA_ARGS__);
#endif