diff options
author | Wayne Davison <wayned@samba.org> | 2006-11-09 01:34:36 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2006-11-09 01:34:36 +0000 |
commit | 574a24a2ec3cc1a3dcd18d74ec735d8d44da1965 (patch) | |
tree | c22202217c5d34a420e1847fcbff8fed59072ca6 /popt | |
parent | 9775d6ab66dc59e05f0daa4f6048d24bc7989602 (diff) | |
download | rsync-574a24a2ec3cc1a3dcd18d74ec735d8d44da1965.tar.gz rsync-574a24a2ec3cc1a3dcd18d74ec735d8d44da1965.tar.bz2 rsync-574a24a2ec3cc1a3dcd18d74ec735d8d44da1965.zip |
Try a full prototype for alloca() for those systems that need it.
Diffstat (limited to 'popt')
-rw-r--r-- | popt/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/popt/system.h b/popt/system.h index 6f496ed5..a2dec861 100644 --- a/popt/system.h +++ b/popt/system.h @@ -75,7 +75,7 @@ void * alloca (size_t __size) # else # ifdef HAVE_ALLOCA # ifndef alloca /* predefined by HP cc +Olibcalls */ -char *alloca (); +char *alloca(size_t size); # endif # else # ifdef alloca |