]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/alloc.c
LibUCW: Fixed broken DARY_ALLOC() on 64bit architectures.
[libucw.git] / ucw / alloc.c
index 4562b81521a4340d6845b57e0ca1ab698df75bf4..c4e40640e764a98ba6bf923af6885b03dc26e9f1 100644 (file)
@@ -7,7 +7,7 @@
  *     of the GNU Lesser General Public License.
  */
 
-#include "ucw/lib.h"
+#include <ucw/lib.h>
 
 #include <stdlib.h>
 #include <string.h>
@@ -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);