ref: c9529c2432e1ee96fb139d7e2b7a650f9ca4c600
dir: /unix.h/
/* this code is uglier than what it should be */ #pragma once #include <string.h> #include <stdio.h> /* replace with plan 9's print? */ /* uncomment if your compiler doesn't support it (ANSI, C99) #define _Noreturn */ #define nil NULL typedef struct Point { int x; int y; }Point; Point Pt(int x, int y); _Noreturn void sysfatal(char *fmt, ...); _Noreturn void exits(char *s); int eqpt(Point p, Point q); int nrand(int n);