diff options
author | Jim Meyering <jim@meyering.net> | 1995-06-15 03:57:49 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-06-15 03:57:49 +0000 |
commit | 2907e4e4f13ed073d216c253bbe0a18de7a39d09 (patch) | |
tree | f13152e0968c47f7f4763e1f202e90f834725da0 /lib | |
parent | 84876e7e9e2b42a430aff37adc0888c4562b447a (diff) | |
download | coreutils-2907e4e4f13ed073d216c253bbe0a18de7a39d09.tar.xz |
Use void* alloca, not char*. The latter lost on convexOS.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/regex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/regex.c b/lib/regex.c index f7e0917b0..e1d5066db 100644 --- a/lib/regex.c +++ b/lib/regex.c @@ -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__ */ |