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

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