From ff76b60d5e54034d2da1383d6ed991bcc675c2af Mon Sep 17 00:00:00 2001 From: smlng Date: Tue, 18 Jul 2017 13:58:29 +0200 Subject: [PATCH] shell: remove feature guards from sc_rtc --- sys/shell/commands/sc_rtc.c | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/sys/shell/commands/sc_rtc.c b/sys/shell/commands/sc_rtc.c index 7f069d01da..63a7f4ec78 100644 --- a/sys/shell/commands/sc_rtc.c +++ b/sys/shell/commands/sc_rtc.c @@ -20,8 +20,6 @@ * @} */ -#ifdef FEATURE_PERIPH_RTC - #include #include #include @@ -188,18 +186,3 @@ int _rtc_handler(int argc, char **argv) } return 0; } - -#else - -#include - -int _rtc_handler(int argc, char **argv) -{ - (void) argc; - (void) argv; - - puts("not implemented"); - return 1; -} - -#endif /* FEATURE_RTC */