summaryrefslogtreecommitdiff
path: root/src/logerr.h
blob: 56b24322db1f650b6b5d3fc7cd7fa9be8fc3b4eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
void
vlogerr(

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

#define logerr(...) vlogerr(__FILE__, __func__, __LINE__, stderr, __VA_ARGS__)