projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
99ec38c
)
Alloca fix for ConvexOS-11.0.
author
Jim Meyering
<jim@meyering.net>
Thu, 15 Jun 1995 14:55:26 +0000
(14:55 +0000)
committer
Jim Meyering
<jim@meyering.net>
Thu, 15 Jun 1995 14:55:26 +0000
(14:55 +0000)
lib/regex.c
patch
|
blob
|
history
diff --git
a/lib/regex.c
b/lib/regex.c
index e1d5066dbac4726bc6b715fd1d830240bd451959..a4959ef539a793acbf7abffac6731fb444fdec35 100644
(file)
--- a/
lib/regex.c
+++ b/
lib/regex.c
@@
-227,7
+227,11
@@
init_syntax_once ()
#include <alloca.h>
#else /* not __GNUC__ or HAVE_ALLOCA_H */
#ifndef _AIX /* Already did AIX, up at the top. */
+#if defined (__STDC__) && __STDC__
void *alloca ();
+#else
+char *alloca ();
+#endif
#endif /* not _AIX */
#endif /* not HAVE_ALLOCA_H */
#endif /* not __GNUC__ */