fire/output.h

8 lines
108 B
C

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