toaruos/apps/cursor-off.c

7 lines
133 B
C
Raw Normal View History

2018-03-06 17:12:32 +03:00
#include <syscall.h>
int main(int argc, char * argv[]) {
int x[] = {0xFF,0xFF};
return syscall_system_function(13, (char **)x);
}