diff options
Diffstat (limited to 'openbsd-compat/bsd-misc.h')
-rw-r--r-- | openbsd-compat/bsd-misc.h | 11 |
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); | |||
126 | int pledge(const char *promises, const char *paths[]); | 126 | int pledge(const char *promises, const char *paths[]); |
127 | #endif | 127 | #endif |
128 | 128 | ||
129 | /* bsd-err.h */ | ||
130 | #ifndef HAVE_ERR | ||
131 | void err(int, const char *, ...) __attribute__((format(printf, 2, 3))); | ||
132 | #endif | ||
133 | #ifndef HAVE_ERRX | ||
134 | void errx(int, const char *, ...) __attribute__((format(printf, 2, 3))); | ||
135 | #endif | ||
136 | #ifndef HAVE_WARN | ||
137 | void warn(const char *, ...) __attribute__((format(printf, 1, 2))); | ||
138 | #endif | ||
139 | |||
129 | #endif /* _BSD_MISC_H */ | 140 | #endif /* _BSD_MISC_H */ |