blob: bae532e05ecff3c08685c679ec592306b53da201 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef ERROR_H
#define ERROR_H
__attribute__ ((__format__(printf, 1, 2)))
void error_s(const char* format, ...);
__attribute__ ((__format__(printf, 1, 2)))
void error(const char* format, ...);
__attribute__ ((__format__(printf, 1, 2)))
void output(const char* format, ...);
#endif
|