From 99ec38cbb2b7f8423b4192a6d06fa8a08de7bd76 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 15 Jun 1995 03:57:49 +0000 Subject: [PATCH] Use void* alloca, not char*. The latter lost on convexOS. --- lib/regex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/regex.c b/lib/regex.c index f7e0917b05..e1d5066dba 100644 --- a/lib/regex.c +++ b/lib/regex.c @@ -227,7 +227,7 @@ init_syntax_once () #include #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__ */ -- 2.11.4.GIT