RIOT/sys/shell/shell_commands.c
Oliver Hahm 3a4c88c637 [sys shell shell_commands]
* added missing function prototype
2011-10-05 15:28:25 +02:00

15 lines
225 B
C

#include <shell.h>
#include <stdlib.h>
#ifdef MODULE_PS
extern void _ps_handler(char* unused);
#endif
const shell_command_t _shell_command_list[] = {
#ifdef MODULE_PS
{"ps", _ps_handler},
#endif
{NULL, NULL}
};