mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
12 lines
164 B
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
|
|
}
|