You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
219 B
C

21 years ago
#include <stdarg.h>
21 years ago
#include <sys/types.h>
21 years ago
#include "errmsg.h"
#include "errmsg_int.h"
21 years ago
#include "str.h"
void errmsg_warn(const char* message, ...) {
va_list a;
va_start(a,message);
errmsg_write(2,0,message,a);
21 years ago
}