aboutsummaryrefslogtreecommitdiff
path: root/util.h
blob: c0f02141ed201c1c7fd2f1ab2c03251b9f9b5bdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdbool.h>

#ifndef __UTIL_H
#define __UTIL_H

#define ERROR -1
#define OK 0

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

#endif