summaryrefslogtreecommitdiff
path: root/lib/alloca.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-08-30 19:19:02 +0000
committerJim Meyering <jim@meyering.net>2001-08-30 19:19:02 +0000
commit19d56db8857fc6b93756610abda033fac8e31282 (patch)
tree340f68d0ab42e0825b37fd787ef98aba470380fa /lib/alloca.c
parent2dbd8cb652a39f697a669dbe741e2537d2d49384 (diff)
downloadgnulib-19d56db8857fc6b93756610abda033fac8e31282.tar.gz
(alloca): Arg is of type size_t, not unsigned.
Diffstat (limited to 'lib/alloca.c')
-rw-r--r--lib/alloca.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/alloca.c b/lib/alloca.c
index 836c50319d..6ad425a4cd 100644
--- a/lib/alloca.c
+++ b/lib/alloca.c
@@ -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);