aboutsummaryrefslogtreecommitdiff
path: root/util.h
blob: 6e9c8cf3131ab17974c9f8595a77dead620db405 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef __UTIL_H
#define __UTIL_H

#define ERROR -1
#define OK 0

void panic(const char *);
int setblocking(int fd, bool blocking);

#endif