hdt: Fixing automatic mode parsing
[syslinux.git] / com32 / lib / zalloc.c
blob0e6ed28d4eb5f4c266f5a1f396251e70d5a16851
1 /*
2 * zalloc.c
3 */
5 #include <stdlib.h>
6 #include <string.h>
8 void *zalloc(size_t size)
10 void *ptr;
12 ptr = malloc(size);
13 if (ptr)
14 memset(ptr, 0, size);
16 return ptr;