12345678910111213141516171819202122232425262728293031323334 |
- #include <support/support.h>
- #include <stdarg.h>
- #include <stdio.h>
- #include <stdlib.h>
- void *
- xcalloc (size_t n, size_t s)
- {
- void *p;
- p = calloc (n, s);
- if (p == NULL)
- oom_error ("calloc", n * s);
- return p;
- }
|