mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
322 B
15 lines
322 B
#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_infosys(const char* message, ...) { |
|
va_list a; |
|
va_start(a,message); |
|
errmsg_writesys(1,message,a); |
|
va_end(a); |
|
}
|
|
|