cleanup src/linux and src/misc trees, etc.
[musl] / src / misc / crypt.c
diff --git a/src/misc/crypt.c b/src/misc/crypt.c
deleted file mode 100644 (file)
index f1e310f..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <unistd.h>
-#include <crypt.h>
-
-char *__crypt_r(const char *, const char *, struct crypt_data *);
-
-char *crypt(const char *key, const char *salt)
-{
-       /* Note: update this size when we add more hash types */
-       static char buf[128];
-       return __crypt_r(key, salt, (struct crypt_data *)buf);
-}