diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-01-12 09:02:08 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-01-12 09:02:08 +0100 |
commit | f9d2d27ff67b6cecf9b969617bc2355bb9e2273c (patch) | |
tree | cae7333f10b3604d0aea162281ff2e81476f55b8 | |
parent | 4436c14ab688ca57fc82c1fd68f2f366fa131de1 (diff) |
fix typo in stdout.h include guard
-rw-r--r-- | include/arduino-nano/driver/stdout.h | 2 | ||||
-rw-r--r-- | include/esp8266/driver/stdout.h | 2 | ||||
-rw-r--r-- | include/msp430fr5969lp/driver/stdout.h | 2 | ||||
-rw-r--r-- | include/posix/driver/stdout.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/include/arduino-nano/driver/stdout.h b/include/arduino-nano/driver/stdout.h index d6cb2b0..2eb669d 100644 --- a/include/arduino-nano/driver/stdout.h +++ b/include/arduino-nano/driver/stdout.h @@ -1,5 +1,5 @@ #ifndef STANDARDOUTPUT_H -#define STANDANDOUTPUT_H +#define STANDARDOUTPUT_H #include "object/outputstream.h" diff --git a/include/esp8266/driver/stdout.h b/include/esp8266/driver/stdout.h index e3d6baa..5a75096 100644 --- a/include/esp8266/driver/stdout.h +++ b/include/esp8266/driver/stdout.h @@ -1,5 +1,5 @@ #ifndef STANDARDOUTPUT_H -#define STANDANDOUTPUT_H +#define STANDARDOUTPUT_H class StandardOutput { private: diff --git a/include/msp430fr5969lp/driver/stdout.h b/include/msp430fr5969lp/driver/stdout.h index d6cb2b0..2eb669d 100644 --- a/include/msp430fr5969lp/driver/stdout.h +++ b/include/msp430fr5969lp/driver/stdout.h @@ -1,5 +1,5 @@ #ifndef STANDARDOUTPUT_H -#define STANDANDOUTPUT_H +#define STANDARDOUTPUT_H #include "object/outputstream.h" diff --git a/include/posix/driver/stdout.h b/include/posix/driver/stdout.h index cf8d881..b21ad56 100644 --- a/include/posix/driver/stdout.h +++ b/include/posix/driver/stdout.h @@ -1,5 +1,5 @@ #ifndef STANDARDOUTPUT_H -#define STANDANDOUTPUT_H +#define STANDARDOUTPUT_H #include "object/outputstream.h" |