summaryrefslogtreecommitdiff
path: root/src/logerr.h
blob: 736da7a4ae0215ed780b0b9e297612f4afd6afcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#define logerr(...) vlogerr(__FILE__, __func__, __LINE__, stderr, __VA_ARGS__)



void
vlogerr(

	const char *const file,
	const char *const function,
	const int lineno,
	FILE *restrict stream,
	const char *restrict format,
	...
);