aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/WProgram.h
diff options
context:
space:
mode:
Diffstat (limited to 'cores/arduino/WProgram.h')
-rwxr-xr-xcores/arduino/WProgram.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cores/arduino/WProgram.h b/cores/arduino/WProgram.h
index e20cab5..fc14923 100755
--- a/cores/arduino/WProgram.h
+++ b/cores/arduino/WProgram.h
@@ -12,8 +12,8 @@
#ifdef __cplusplus
#include "HardwareSerial.h"
-uint16_t makeWord(uint16_t w) { return w; }
-uint16_t makeWord(byte h, byte l) { return (h << 8) | l; }
+uint16_t makeWord(uint16_t w);
+uint16_t makeWord(byte h, byte l);
#define word(...) makeWord(__VA_ARGS__)