mirror of
https://gitlab.freedesktop.org/libbsd/libbsd.git
synced 2025-10-14 23:08:00 +02:00
Add errc, warnc, verrc and vwarnc
This commit is contained in:

committed by
Guillem Jover

parent
bc2b90c07b
commit
33eb3ecc41
11
include/bsd/err.h
Normal file
11
include/bsd/err.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#ifndef LIBBSD_ERR_H
|
||||
#define LIBBSD_ERR_H
|
||||
|
||||
#include <err.h>
|
||||
|
||||
extern void warnc (int code, const char *format, ...);
|
||||
extern void vwarnc (int code, const char *format, va_list ap);
|
||||
extern void errc (int status, int code, const char *format, ...);
|
||||
extern void verrc (int status, int code, const char *format, va_list ap);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user