(alloca): Arg is of type size_t, not unsigned.
authorJim Meyering <jim@meyering.net>
Thu, 30 Aug 2001 19:19:02 +0000 (19:19 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 30 Aug 2001 19:19:02 +0000 (19:19 +0000)
lib/alloca.c

index 836c50319d3ed2c3527c1884cd22cf4492388058..6ad425a4cd6cdd2224c6f0aad359da5e32f9ec61 100644 (file)
@@ -169,7 +169,7 @@ static header *last_alloca_header = NULL;   /* -> last alloca header.  */
    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);