1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-28 08:10:45 +00:00
falk-werner_webfuse-provider/test-src/test_util.c
2019-01-27 03:45:03 +01:00

16 lines
227 B
C

#include "test_util.h"
#include <stdio.h>
#include <stdlib.h>
void fail(
char const * file_name,
int line,
char const * message
)
{
fprintf(stderr, "error: %s:%d: %s\n", file_name, line, message);
exit(EXIT_FAILURE);
}