repo.or.cz
/
mcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Used Variables instead of Options, in SConstruct
[mcc.git]
/
errors.h
blob
285a2bc9268c640c5e60fe524e0c8754f8fa5319
1
#ifndef MCC_ERRORS_H
2
#define MCC_ERRORS_H
3
4
#include
"cppdefs.h"
5
#include
"stddef.h"
6
7
#define die(...) _die(__func__, __VA_ARGS__)
8
noreturn
void
_die
(
const char
*
func
,
const char
*
fmt
, ...);
9
void
*
emalloc
(
size_t
size
);
10
char
*
estrdup
(
const char
*
str
);
11
12
#endif
13