1 2 3 4 5 6 7 8 9
#include <stdbool.h> #ifndef __UTIL_H #define __UTIL_H void panic(const char *); int setblocking(int fd, bool blocking); #endif