From 48eeda41263d0c9a63dffb23574de5422d11a1b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Nohlg=C3=A5rd?= Date: Sun, 8 Jan 2017 19:27:12 +0100 Subject: [PATCH] msp430-common: stdio.h: Move extern "C" brace to correct place --- cpu/msp430_common/include/stdio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpu/msp430_common/include/stdio.h b/cpu/msp430_common/include/stdio.h index 145cdb79cc..3e13eb90a8 100644 --- a/cpu/msp430_common/include/stdio.h +++ b/cpu/msp430_common/include/stdio.h @@ -27,12 +27,12 @@ #include_next -int getchar(void); - #ifdef __cplusplus extern "C" { #endif +int getchar(void); + #ifdef __cplusplus } #endif