21625f40b5
I tried to get the latest versions from dockapps.org, but I haven't tested any of them. More dockapps will be added as time permits.
8 lines
364 B
C
8 lines
364 B
C
#include <stdarg.h>
|
|
|
|
void warn(char *fmt, ...) __attribute__ ((__format__ (__printf__, 1, 2)));
|
|
void die(char *fmt, ...) __attribute__ ((__format__ (__printf__, 1, 2), __noreturn__));
|
|
|
|
void vwarn(char *fmt, va_list ap) __attribute__ ((__format__ (__printf__, 1, 0)));
|
|
void vdie(char *fmt, va_list ap) __attribute__ ((__format__ (__printf__, 1, 0), __noreturn__));
|