Use void* alloca, not char*. The latter lost on convexOS. ss-950614-22h58-1_11_5a
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 f7e0917..e1d5066 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__ */