1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/shell/shell_commands.c

11 lines
157 B
C
Raw Normal View History

#include <shell.h>
2010-11-04 14:24:31 +01:00
#include <stdlib.h>
const shell_command_t _shell_command_list[] = {
#ifdef MODULE_PS
{"ps", ps_handler},
#endif
{NULL, NULL}
};