From: Eric Biggers Date: Wed, 28 Jan 2015 00:03:09 +0000 (-0600) Subject: add missing file: include/wimlib/alloca.h X-Git-Tag: v1.8.0~52 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=0a72460f9274f11689986f6b79ea42e512dd9213;ds=sidebyside add missing file: include/wimlib/alloca.h --- diff --git a/include/wimlib/alloca.h b/include/wimlib/alloca.h new file mode 100644 index 00000000..a3097c6f --- /dev/null +++ b/include/wimlib/alloca.h @@ -0,0 +1,10 @@ +#ifndef _WIMLIB_ALLOCA_H +#define _WIMLIB_ALLOCA_H + +#ifdef HAVE_ALLOCA_H +# include +#else +# include +#endif + +#endif /* _WIMLIB_ALLOCA_H */