Fix common files for mbed

This commit is contained in:
tmk 2014-06-17 22:41:14 +09:00
parent ee70fe59ee
commit e81c70149e
23 changed files with 323 additions and 110 deletions

17
common/mbed/xprintf.h Normal file
View file

@ -0,0 +1,17 @@
#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