lib9.std.h - 9base - revived minimalist port of Plan 9 userland to Unix | |
git clone git://git.suckless.org/9base | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
lib9.std.h (153B) | |
--- | |
1 #include <fmt.h> | |
2 #include <setjmp.h> | |
3 #include <string.h> | |
4 #include <stdlib.h> | |
5 #include <unistd.h> | |
6 | |
7 #define exits(x) exit(x && *x ? 1 : 0) | |
8 | |
9 #define nil 0 | |
10 |