1 #ifndef MYCRYPT_H
2 #define MYCRYPT_H
3 
4 /* A simple wrapper to crypt(). Problem with it is that it requires
5    _XOPEN_SOURCE define which breaks other things. */
6 char *mycrypt(const char *key, const char *salt);
7 
8 #endif
9