shell: remove feature guards from sc_rtc

This commit is contained in:
smlng 2017-07-18 13:58:29 +02:00 committed by Victor Arino
parent f0ff5a113f
commit ff76b60d5e

View File

@ -20,8 +20,6 @@
* @}
*/
#ifdef FEATURE_PERIPH_RTC
#include <stdio.h>
#include <stdint.h>
#include <string.h>
@ -188,18 +186,3 @@ int _rtc_handler(int argc, char **argv)
}
return 0;
}
#else
#include <stdio.h>
int _rtc_handler(int argc, char **argv)
{
(void) argc;
(void) argv;
puts("not implemented");
return 1;
}
#endif /* FEATURE_RTC */