changeset 3396:cf6649174de6

(alloca): Arg is of type size_t, not unsigned.
author Jim Meyering <jim@meyering.net>
date Thu, 30 Aug 2001 19:19:02 +0000
parents 4ae5a3e63768
children 4da18ed27e9c
files lib/alloca.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/alloca.c
+++ b/lib/alloca.c
@@ -169,7 +169,7 @@
    implementations of C, for example under Gould's UTX/32.  */
 
 pointer
-alloca (unsigned size)
+alloca (size_t size)
 {
   auto char probe;		/* Probes stack depth: */
   register char *depth = ADDRESS_FUNCTION (probe);