2 * On-screen Display Daemon -- Utility Functions
4 * (c) 2010 Martin Mares <mj@ucw.cz>
13 void __attribute__((noreturn)) __attribute__((format(printf,1,2)))
18 fputs("osdd: ", stderr);
19 vfprintf(stderr, fmt, args);
27 void *p = malloc(size);
29 die("Failed to allocate %d bytes of memory", size);