From f326beb3f7909f69fbb0a79a01d437d9785bd3c5 Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Wed, 2 Dec 2015 11:11:00 +0100 Subject: [PATCH] core/native_sched.h: style and doxygen fixes --- core/include/native_sched.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/include/native_sched.h b/core/include/native_sched.h index 10508d2390..1b561181de 100644 --- a/core/include/native_sched.h +++ b/core/include/native_sched.h @@ -18,7 +18,6 @@ * @brief Add definitions required on the native board * * @author Raphael Hiesgen - * @} */ #ifndef NATIVE_SCHEDULER_H @@ -30,6 +29,7 @@ extern "C" { #ifdef BOARD_NATIVE #include + /* * Required to use some C++11 headers with g++ on the native board. */ @@ -48,10 +48,11 @@ inline int sched_yield(void) puts("[ERROR] sched_yield called (defined in sched.h)\n"); return 0; } -#endif // BOARD_NATIVE +#endif /* BOARD_NATIVE */ #ifdef __cplusplus } #endif #endif /* NATIVE_SCHEDULER_H */ +/** @} */