bssolver/error.c

18 lines
397 B
C

/*
This is a personal academic project. Dear PVS-Studio, please check it.
PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
*/
#include <stdio.h>
#include <stdlib.h>
void printError(char * string) {
fprintf(stderr, "%s", string);
fprintf(stderr, "\n");
exit(EXIT_FAILURE);
}
void printSystemError(char * string) {
perror(string);
exit(EXIT_FAILURE);
}