2 * Utility functions for judges
4 * (c) 2007 Martin Mares <mj@ucw.cz>
13 void die(char *msg, ...)
17 vfprintf(stderr, msg, args);
23 void *xmalloc(size_t size)
25 void *p = malloc(size);
27 die("Out of memory (unable to allocate %z bytes)", size);
31 void *xrealloc(void *p, size_t size)
35 die("Out of memory (unable to allocate %z bytes)", size);