diff options
Diffstat (limited to 'Userland/Libraries/LibC/unistd.h')
-rw-r--r-- | Userland/Libraries/LibC/unistd.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Userland/Libraries/LibC/unistd.h b/Userland/Libraries/LibC/unistd.h index 7f54106434..acfd13c2bc 100644 --- a/Userland/Libraries/LibC/unistd.h +++ b/Userland/Libraries/LibC/unistd.h @@ -171,14 +171,6 @@ enum { long sysconf(int name); -struct crypt_data { - int initialized; - char result[65]; -}; - -char* crypt(const char* key, const char* salt); -char* crypt_r(const char* key, const char* salt, struct crypt_data* data); - // If opterr is set (the default), print error messages to stderr. extern int opterr; // On errors, optopt is set to the erroneous *character*. |