git://wimlib.net
/
wimlib
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add missing file: include/wimlib/alloca.h
[wimlib]
/
include
/
wimlib
/
alloca.h
1
#ifndef _WIMLIB_ALLOCA_H
2
#define _WIMLIB_ALLOCA_H
3
4
#ifdef HAVE_ALLOCA_H
5
# include <alloca.h>
6
#else
7
# include <stdlib.h>
8
#endif
9
10
#endif /* _WIMLIB_ALLOCA_H */