telldus/telldus-core/3rdparty/openbsd-getopt/err.h
2012-01-18 11:21:42 +01:00

9 lines
161 B
C

#include <windows.h>
#include <stdio.h>
__inline void warnx(const char *fmt, ...) {
va_list ap;
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
}