#include<unistd.h>#include<crypt.h>char*__crypt_r(constchar*,constchar*,structcrypt_data*);char*crypt(constchar*key,constchar*salt){/* Note: update this size when we add more hash types */staticcharbuf[128];return__crypt_r(key,salt,(structcrypt_data*)buf);}