repo.or.cz
/
surf
/
julien_surf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
change language settings
[surf/julien_surf.git]
/
common.c
blob
42662ed487605d88503b9e92006dfd2f15080100
1
#include <stdarg.h>
2
#include <stdio.h>
3
#include <stdlib.h>
4
5
void
6
die
(
const char
*
errstr
, ...)
7
{
8
va_list
ap
;
9
10
va_start
(
ap
,
errstr
);
11
vfprintf
(
stderr
,
errstr
,
ap
);
12
va_end
(
ap
);
13
exit
(
1
);
14
}
15