RIOT/sys/shell/shell_commands.c
Oliver Hahm 90ad73e0f8 [sys shell shell_commands]
* added missing header include
2011-04-14 13:49:18 +02:00

11 lines
157 B
C

#include <shell.h>
#include <stdlib.h>
const shell_command_t _shell_command_list[] = {
#ifdef MODULE_PS
{"ps", ps_handler},
#endif
{NULL, NULL}
};