mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
10 lines
137 B
C
10 lines
137 B
C
|
#include <shell.h>
|
||
|
|
||
|
const shell_command_t _shell_command_list[] = {
|
||
|
#ifdef MODULE_PS
|
||
|
{"ps", ps_handler},
|
||
|
#endif
|
||
|
{NULL, NULL}
|
||
|
};
|
||
|
|