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.
|
#include <stdarg.h>
|
|
#include <sys/types.h>
|
|
#include "errmsg.h"
|
|
#include "errmsg_int.h"
|
|
#include "str.h"
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
|
|
void errmsg_warnsys(const char* message, ...) {
|
|
va_list a;
|
|
va_start(a,message);
|
|
errmsg_write(2,strerror(errno),message,a);
|
|
}
|