(alloca): Arg is of type size_t, not unsigned.

This commit is contained in:
Paul Eggert
2001-07-08 19:08:50 +00:00
parent fae274abc3
commit 4ae648023c

View 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);