mirror of
https://github.com/kiedtl/fire.git
synced 2024-11-16 13:06:37 +00:00
8 lines
108 B
C
8 lines
108 B
C
#ifndef OUTP_H
|
|
#define OUTP_H
|
|
#include <stdio.h>
|
|
|
|
#define EPRINT(...) fprintf(stderr, __VA_ARGS__);
|
|
|
|
#endif
|