aboutsummaryrefslogtreecommitdiff
path: root/err.h
blob: d3db805c4bb8324fbeb0527e4ffc51556a3a6c27 (plain)
1
2
3
4
5
6
7
#ifndef ERR_H
#define ERR_H

#include <stdio.h>
#define ERR(s) fprintf(stderr, "ERR (%s:%i): %s\n", __FILE__, __LINE__, s)

#endif /* ERR_H */