From: Jim Meyering Date: Thu, 15 Jun 1995 03:57:49 +0000 (+0000) Subject: Use void* alloca, not char*. The latter lost on convexOS. X-Git-Tag: textutils-1_12_1~106 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2907e4e4f13ed073d216c253bbe0a18de7a39d09;p=thirdparty%2Fcoreutils.git Use void* alloca, not char*. The latter lost on convexOS. --- 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__ */