]> git.donarmstrong.com Git - tmk_firmware.git/blobdiff - common/print.h
Adhoc fix compile error of usb_usb
[tmk_firmware.git] / common / print.h
index 930e84be99d555871aec946f27cf2c49f909eb76..7799328910eb96d93096c9d210c3ebbb6f03e402 100644 (file)
 
 // this macro allows you to write print("some text") and
 // the string is automatically placed into flash memory :)
-// TODO: avoid collision with arduino/Print.h
-#ifndef __cplusplus
 #define print(s)                print_P(PSTR(s))
-#endif
 #define println(s)              print_P(PSTR(s "\n"))
 
 /* for old name */