summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/include/crypt.h
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/include/crypt.h')
-rw-r--r--libc-top-half/musl/src/include/crypt.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/include/crypt.h b/libc-top-half/musl/src/include/crypt.h
new file mode 100644
index 0000000..f6c6309
--- /dev/null
+++ b/libc-top-half/musl/src/include/crypt.h
@@ -0,0 +1,16 @@
+#ifndef CRYPT_H
+#define CRYPT_H
+
+#include "../../include/crypt.h"
+
+#include <features.h>
+
+hidden char *__crypt_r(const char *, const char *, struct crypt_data *);
+
+hidden char *__crypt_des(const char *, const char *, char *);
+hidden char *__crypt_md5(const char *, const char *, char *);
+hidden char *__crypt_blowfish(const char *, const char *, char *);
+hidden char *__crypt_sha256(const char *, const char *, char *);
+hidden char *__crypt_sha512(const char *, const char *, char *);
+
+#endif