summaryrefslogtreecommitdiffstats
path: root/openbsd-compat/openbsd-compat.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2019-11-01 14:41:07 +1100
committerDarren Tucker <dtucker@dtucker.net>2019-11-01 14:41:07 +1100
commit5eb7b9563ff818e17de24231bf2d347d9db302c5 (patch)
tree282a9f2ff7f716e7b40476b43feda7123d9f30a3 /openbsd-compat/openbsd-compat.h
parentd500b59a825f6a58f2abf7b04eb1992d81e45d58 (diff)
Add prototype for localtime_r if needed.
Diffstat (limited to 'openbsd-compat/openbsd-compat.h')
-rw-r--r--openbsd-compat/openbsd-compat.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/openbsd-compat/openbsd-compat.h b/openbsd-compat/openbsd-compat.h
index 0430e196..97b344b6 100644
--- a/openbsd-compat/openbsd-compat.h
+++ b/openbsd-compat/openbsd-compat.h
@@ -322,6 +322,10 @@ void explicit_bzero(void *p, size_t n);
void freezero(void *, size_t);
#endif
+#ifndef HAVE_LOCALTIME_R
+struct tm *localtime_r(const time_t *, struct tm *);
+#endif
+
char *xcrypt(const char *password, const char *salt);
char *shadow_pw(struct passwd *pw);