fire/output.h
2019-12-12 22:39:35 -05:00

8 lines
107 B
C

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