projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
40d1b47
)
(alloca): Define to __builtin_alloca if __GNUC__,
author
Jim Meyering
<jim@meyering.net>
Mon, 22 Oct 2001 08:01:22 +0000
(08:01 +0000)
committer
Jim Meyering
<jim@meyering.net>
Mon, 22 Oct 2001 08:01:22 +0000
(08:01 +0000)
to avoid a warning if -Wall.
lib/hard-locale.c
patch
|
blob
|
history
diff --git
a/lib/hard-locale.c
b/lib/hard-locale.c
index 1c75b390a68472bc7ccfd94d150dc393aeb2f7c0..01e0ebdd7001e713d31b7979327ea73bac272871 100644
(file)
--- a/
lib/hard-locale.c
+++ b/
lib/hard-locale.c
@@
-19,7
+19,9
@@
# include <config.h>
#endif
-#ifndef __GNUC__
+#if __GNUC__
+# define alloca __builtin_alloca
+#else
# ifdef HAVE_ALLOCA_H
# include <alloca.h>
# else