fire/output.h

8 lines
107 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
#define PRINT(...) fprintf(stderr, __VA_ARGS__);
#endif