summaryrefslogtreecommitdiff
path: root/src/unistd/crypt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/crypt.c')
-rw-r--r--src/unistd/crypt.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/unistd/crypt.c b/src/unistd/crypt.c
new file mode 100644
index 00000000..e1235818
--- /dev/null
+++ b/src/unistd/crypt.c
@@ -0,0 +1,10 @@
+#include <unistd.h>
+
+char * crypt( const char *key, const char *salt)
+{
+ return (char*)key;
+}
+
+/*
+XOPEN(4)
+*/