bssolver/error.c

14 lines
247 B
C

#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);
}