11 lines
91 B
C
11 lines
91 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
|
||
|
void
|
||
|
die(const char *s)
|
||
|
{
|
||
|
perror(s);
|
||
|
exit(1);
|
||
|
}
|