10 lines
179 B
C
10 lines
179 B
C
#define _XOPEN_SOURCE
|
|
#include <unistd.h>
|
|
|
|
char *cwc_krypt(const char *key, const char *salt);
|
|
|
|
char *
|
|
cwc_krypt(const char *key, const char *salt)
|
|
{
|
|
return crypt(key, salt);
|
|
}
|