]> Dogcows Code - chaz/tar/commitdiff
(alloca): Arg is of type size_t, not unsigned.
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 8 Jul 2001 19:08:50 +0000 (19:08 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 8 Jul 2001 19:08:50 +0000 (19:08 +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);
This page took 0.022141 seconds and 4 git commands to generate.