summaryrefslogtreecommitdiff
path: root/openbsd-compat/bsd-misc.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2016-07-13 14:42:35 +1000
committerDarren Tucker <dtucker@zip.com.au>2016-07-13 14:42:35 +1000
commit6310ef27a2567cda66d6cf0c1ad290ee1167f243 (patch)
treea84f11401272e0eb9717008e6d2d69c426e72aea /openbsd-compat/bsd-misc.h
parentf3f2cc8386868f51440c45210098f65f9787449a (diff)
Move err.h replacements into compat lib.
Move implementations of err.h replacement functions into their own file in the libopenbsd-compat so we can use them in kexfuzz.c too. ok djm@
Diffstat (limited to 'openbsd-compat/bsd-misc.h')
-rw-r--r--openbsd-compat/bsd-misc.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/openbsd-compat/bsd-misc.h b/openbsd-compat/bsd-misc.h
index 0d81d1735..27abb2e92 100644
--- a/openbsd-compat/bsd-misc.h
+++ b/openbsd-compat/bsd-misc.h
@@ -126,4 +126,15 @@ pid_t getpgid(pid_t);
126int pledge(const char *promises, const char *paths[]); 126int pledge(const char *promises, const char *paths[]);
127#endif 127#endif
128 128
129/* bsd-err.h */
130#ifndef HAVE_ERR
131void err(int, const char *, ...) __attribute__((format(printf, 2, 3)));
132#endif
133#ifndef HAVE_ERRX
134void errx(int, const char *, ...) __attribute__((format(printf, 2, 3)));
135#endif
136#ifndef HAVE_WARN
137void warn(const char *, ...) __attribute__((format(printf, 1, 2)));
138#endif
139
129#endif /* _BSD_MISC_H */ 140#endif /* _BSD_MISC_H */