Use void* alloca, not char*. The latter lost on convexOS.
authorJim Meyering <jim@meyering.net>
Thu, 15 Jun 1995 03:57:49 +0000 (03:57 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 15 Jun 1995 03:57:49 +0000 (03:57 +0000)
lib/regex.c

index f7e0917b0548c7135191ef49f7eb50b10901eca2..e1d5066dbac4726bc6b715fd1d830240bd451959 100644 (file)
@@ -227,7 +227,7 @@ init_syntax_once ()
 #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__ */