bottleros/Userland/SampleCodeModule/shell/commands/ps.c

9 lines
166 B
C

#include "libc.h"
#include "shell.h"
void ps(int argc, char *argv[]) {
char * output = sys_ps();
printString(output);
new_line();
sys_free(output);
}