Avoid some random compiler warnings on various platforms.

This commit is contained in:
Mark Adler
2016-12-30 22:05:05 -08:00
parent fb26fc427f
commit 8f147c3d12
6 changed files with 14 additions and 12 deletions

View File

@@ -156,14 +156,14 @@ void *myalloc(q, n, m)
void *q;
unsigned n, m;
{
q = Z_NULL;
(void)q;
return calloc(n, m);
}
void myfree(q, p)
void *q, *p;
{
q = Z_NULL;
(void)q;
free(p);
}