aboutsummaryrefslogtreecommitdiffstats
path: root/openbsd-compat/err_h/err.h
blob: a56b61887d79833a7c6fdd95dabce4fb163fb158 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef ERR_H
#define ERR_H

#ifndef LIBCRYPTOCOMPAT_ERR_H
#define LIBCRYPTOCOMPAT_ERR_H

__attribute__ ((noreturn))
void err(int, const char *, ...);

__attribute__ ((noreturn))
void errx(int, const char *, ...);

void warn(const char *, ...);
void warnx(const char *, ...);

#endif

#endif