summaryrefslogtreecommitdiff
path: root/include/unistd.h
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2014-05-16 21:28:16 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2014-05-16 21:28:16 +0000
commitba634de27c3550530e5c34e8bbc635d456112f65 (patch)
tree5d80f2ffcb168b8981778bf191d8c91f5164a651 /include/unistd.h
parentfea3f0114b72a97898959130f5e5306c7369a399 (diff)
add prototypes for new crypt functions
Diffstat (limited to 'include/unistd.h')
-rw-r--r--include/unistd.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/unistd.h b/include/unistd.h
index 1ba25f421f3..ea5d26b7140 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: unistd.h,v 1.85 2014/04/21 11:28:26 guenther Exp $ */
+/* $OpenBSD: unistd.h,v 1.86 2014/05/16 21:28:15 tedu Exp $ */
/* $NetBSD: unistd.h,v 1.26.4.1 1996/05/28 02:31:51 mrg Exp $ */
/*-
@@ -410,6 +410,9 @@ int fdatasync(int);
#endif
#if __XPG_VISIBLE || __BSD_VISIBLE
+#if __BSD_VISIBLE
+int crypt_checkpass(const char *, const char *);
+#endif
char *crypt(const char *, const char *);
int encrypt(char *, int);
int fchdir(int);