X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Falloc.c;h=c4e40640e764a98ba6bf923af6885b03dc26e9f1;hb=5959916922193dea72ec0f74fa0a5211ca68f9c4;hp=4562b81521a4340d6845b57e0ca1ab698df75bf4;hpb=e6688eeb82d349a202a30a243a59079bdc4c212d;p=libucw.git diff --git a/ucw/alloc.c b/ucw/alloc.c index 4562b815..c4e40640 100644 --- a/ucw/alloc.c +++ b/ucw/alloc.c @@ -7,7 +7,7 @@ * of the GNU Lesser General Public License. */ -#include "ucw/lib.h" +#include #include #include @@ -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);