_lib9.h - 9base - revived minimalist port of Plan 9 userland to Unix | |
git clone git://git.suckless.org/9base | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
_lib9.h (186B) | |
--- | |
1 #include <fmt.h> | |
2 #include <fcntl.h> | |
3 #include <string.h> | |
4 #include <unistd.h> | |
5 #include <stdlib.h> | |
6 | |
7 #define OREAD O_RDONLY | |
8 #define OWRITE O_WRONLY | |
9 | |
10 #include <utf.h> | |
11 | |
12 #define nil ((void*)0) |