11 lines
152 B
C
11 lines
152 B
C
#include "die.h"
|
|
|
|
void die(const char *msg, int flag) {
|
|
if (flag)
|
|
fprintf(stderr, "%s: %s\n", msg, strerror(errno));
|
|
else
|
|
puts(msg);
|
|
|
|
exit(1);
|
|
}
|