diff options
Diffstat (limited to 'locale/programs/xmalloc.c')
-rw-r--r-- | locale/programs/xmalloc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/locale/programs/xmalloc.c b/locale/programs/xmalloc.c index 2528c5f379..cca129b2de 100644 --- a/locale/programs/xmalloc.c +++ b/locale/programs/xmalloc.c @@ -80,8 +80,7 @@ xmalloc (size_t n) /* Allocate memory for N elements of S bytes, with error checking. */ VOID * -xcalloc (n, s) - size_t n, s; +xcalloc (size_t n, size_t s) { VOID *p; |