1
0
Fork 0

Adhoc fix compile error of usb_usb

This commit is contained in:
tmk 2014-09-22 10:42:20 +09:00
parent b9e265368f
commit ea524d7bef
11 changed files with 27 additions and 10 deletions

View file

@ -8,6 +8,10 @@
#include <inttypes.h>
#include <avr/pgmspace.h>
#ifdef __cplusplus
extern "C" {
#endif
extern void (*xfunc_out)(uint8_t);
#define xdev_out(func) xfunc_out = (void(*)(uint8_t))(func)
@ -99,5 +103,9 @@ char xatoi(char **str, long *ret);
Pointer to return value
*/
#ifdef __cplusplus
}
#endif
#endif