]> git.donarmstrong.com Git - qmk_firmware.git/blob - tmk_core/common/mbed/xprintf.h
[Docs] Remove some outdated FAQ items (#7607)
[qmk_firmware.git] / tmk_core / common / mbed / xprintf.h
1 #ifndef XPRINTF_H
2 #define XPRINTF_H
3
4 //#define xprintf(format, ...)            __xprintf(format, ##__VA_ARGS__)
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 int __xprintf(const char *format, ...);
11
12 #ifdef __cplusplus
13 }
14 #endif
15
16 #endif