aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/include/posix/err.h
blob: 1079f589afe41f2f88edb6a1e24df86f45e444e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _POSIX_ERR_H
#define _POSIX_ERR_H

#include <stdarg.h>

void err(int eval, const char *fmt, ...);
void errx(int eval, const char *fmt, ...);
void warn(const char *fmt, ...);
void warnx(const char *fmt, ...);
void verr(int eval, const char *fmt, va_list args);
void verrx(int eval, const char *fmt, va_list args);
void vwarn(const char *fmt, va_list args);
void vwarnx(const char *fmt, va_list args);

#endif /* _POSIX_ERR_H */