git://wimlib.net
/
wimlib
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
d4257e6
)
add missing file: include/wimlib/alloca.h
author
Eric Biggers
<ebiggers3@gmail.com>
Wed, 28 Jan 2015 00:03:09 +0000
(18:03 -0600)
committer
Eric Biggers
<ebiggers3@gmail.com>
Wed, 28 Jan 2015 00:03:37 +0000
(18:03 -0600)
include/wimlib/alloca.h
[new file with mode: 0644]
patch
|
blob
diff --git a/include/wimlib/alloca.h
b/include/wimlib/alloca.h
new file mode 100644
(file)
index 0000000..
a3097c6
--- /dev/null
+++ b/
include/wimlib/alloca.h
@@ -0,0
+1,10
@@
+#ifndef _WIMLIB_ALLOCA_H
+#define _WIMLIB_ALLOCA_H
+
+#ifdef HAVE_ALLOCA_H
+# include <alloca.h>
+#else
+# include <stdlib.h>
+#endif
+
+#endif /* _WIMLIB_ALLOCA_H */