]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/alloc.c
Added string functions for matching of prefixes and suffixes
[libucw.git] / ucw / alloc.c
index 4562b81521a4340d6845b57e0ca1ab698df75bf4..4528e09757f16d4a00e444e1a33973921fcc5736 100644 (file)
@@ -22,7 +22,7 @@ xmalloc(size_t size)
 }
 
 void *
-xmalloc_zero(uns size)
+xmalloc_zero(size_t size)
 {
   void *x = xmalloc(size);
   bzero(x, size);