diff options
author | Christopher James Lahey <clahey@ximian.com> | 2002-04-27 04:14:39 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2002-04-27 04:14:39 +0800 |
commit | fd07f957a16fc313371e9f4c09e7937d381e96af (patch) | |
tree | 98484646696e202313bdcb7dff44c126e2cd2289 | |
parent | 4d1a6538abbe2e979492861bf6b2ff676ed854a1 (diff) | |
download | gsoc2013-evolution-fd07f957a16fc313371e9f4c09e7937d381e96af.tar gsoc2013-evolution-fd07f957a16fc313371e9f4c09e7937d381e96af.tar.gz gsoc2013-evolution-fd07f957a16fc313371e9f4c09e7937d381e96af.tar.bz2 gsoc2013-evolution-fd07f957a16fc313371e9f4c09e7937d381e96af.tar.lz gsoc2013-evolution-fd07f957a16fc313371e9f4c09e7937d381e96af.tar.xz gsoc2013-evolution-fd07f957a16fc313371e9f4c09e7937d381e96af.tar.zst gsoc2013-evolution-fd07f957a16fc313371e9f4c09e7937d381e96af.zip |
Include alloca.h here if it's necessary.
2002-04-26 Christopher James Lahey <clahey@ximian.com>
* gal/widgets/e-unicode.c: Include alloca.h here if it's
necessary.
svn path=/trunk/; revision=16601
-rw-r--r-- | widgets/misc/e-unicode.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/widgets/misc/e-unicode.c b/widgets/misc/e-unicode.c index 1a3f606732..ebf1ede9cb 100644 --- a/widgets/misc/e-unicode.c +++ b/widgets/misc/e-unicode.c @@ -43,6 +43,10 @@ #include <stdlib.h> #include "gal/util/e-iconv.h" +#ifdef HAVE_ALLOCA_H +#include <alloca.h> +#endif + #define d(x) x #define FONT_TESTING |