summaryrefslogtreecommitdiff
path: root/openbsd-compat/bsd-misc.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2017-09-25 09:48:10 +1000
committerDarren Tucker <dtucker@zip.com.au>2017-09-25 09:48:10 +1000
commit44fc334c7a9ebdd08addb6d5fa005369897fddeb (patch)
treef1e113af2215b661dc01d89785897069c13a5693 /openbsd-compat/bsd-misc.h
parent218e6f98df566fb9bd363f6aa47018cb65ede196 (diff)
downloadopenssh-git-44fc334c7a9ebdd08addb6d5fa005369897fddeb.tar.gz
Add minimal strsignal for platforms without it.
Diffstat (limited to 'openbsd-compat/bsd-misc.h')
-rw-r--r--openbsd-compat/bsd-misc.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/openbsd-compat/bsd-misc.h b/openbsd-compat/bsd-misc.h
index 70a538f0..0b1a3504 100644
--- a/openbsd-compat/bsd-misc.h
+++ b/openbsd-compat/bsd-misc.h
@@ -49,6 +49,10 @@ int setegid(uid_t);
const char *strerror(int);
#endif
+#if !defined(HAVE_STRSIGNAL)
+char *strsignal(int);
+#endif
+
#if !defined(HAVE_SETLINEBUF)
#define setlinebuf(a) (setvbuf((a), NULL, _IOLBF, 0))
#endif