changeset 453:b7ccfad22df9

Use void* alloca, not char*. The latter lost on convexOS.
author Jim Meyering <jim@meyering.net>
date Thu, 15 Jun 1995 03:57:49 +0000
parents 39480ba80832
children 19d0cf487aa0
files lib/regex.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/regex.c
+++ b/lib/regex.c
@@ -227,7 +227,7 @@
 #include <alloca.h>
 #else /* not __GNUC__ or HAVE_ALLOCA_H */
 #ifndef _AIX /* Already did AIX, up at the top.  */
-char *alloca ();
+void *alloca ();
 #endif /* not _AIX */
 #endif /* not HAVE_ALLOCA_H */ 
 #endif /* not __GNUC__ */