summaryrefslogtreecommitdiff
path: root/src/unistd/crypt.c
blob: 91b01da371101fec002d91e23be5dd57f18e252e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#if 0

#include <unistd.h>

char * crypt( const char *key, const char *salt)
{
	return (char*)key;
}

/*
XOPEN(4)
*/


#endif