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-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=99ec38cbb2b7f8423b4192a6d06fa8a08de7bd76;p=pspp 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__ */