1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/sys/shell/shell_auto_init.c

12 lines
164 B
C

#include <shell.h>
#ifdef MODULE_PS
#include <ps.h>
#endif
void shell_auto_init(shell_t *s) {
#ifdef MODULE_PS
shell_register_cmd(s, "ps", _ps_handler);
#endif
}