libowfat/buffer/errmsg_warnsys.c
leitner 9eb09b5bfe add iob_free and man page for iob_reset.
check in some windoze compat crap (still does not compile through for
windoze)
2005-03-08 14:56:36 +00:00

16 lines
322 B
C

#include <stdarg.h>
#include <sys/types.h>
#include "errmsg.h"
#include "str.h"
#include <string.h>
#include <errno.h>
extern void errmsg_writesys(int fd,const char* message,va_list list);
void errmsg_warnsys(const char* message, ...) {
va_list a;
va_start(a,message);
errmsg_writesys(2,message,a);
va_end(a);
}