Important
This setup requires emulating via 86Box/PCem
Important
This setup is specifically for the IBM version of Xenix. Not the SCO distribution
| #include <stdio.h> | |
| // Must be run as root | |
| // To build: | |
| // cc lxgc.c -o lxgc | |
| int write(const char *path) { | |
| FILE *fp; | |
| fp = fopen(path, "w"); | |
| int response = fputs("1", fp); |