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

9 lines
149 B
C

#include "libc.h"
#include "shell.h"
void sem() {
char * output = sys_sem();
printString(output);
new_line();
// sys_free(output);
}