blob: e27822d3a8eb47cfd35c8a724f4814753c9d652d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef XPRINTF_H
#define XPRINTF_H
//#define xprintf(format, ...) __xprintf(format, ##__VA_ARGS__)
#ifdef __cplusplus
extern "C" {
#endif
int __xprintf(const char *format, ...);
#ifdef __cplusplus
}
#endif
#endif
|