1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:17:44 +00:00

LibC: Move crypt() and crypt_r() to the right header file

According to POSIX.1 these should be in <crypt.h>.
This commit is contained in:
Gunnar Beutner 2021-05-01 11:38:19 +02:00 committed by Andreas Kling
parent f05086a5d2
commit ce77caf479
6 changed files with 35 additions and 9 deletions

View file

@ -9,6 +9,7 @@
#include <AK/ScopeGuard.h>
#include <LibCore/Account.h>
#include <LibCore/File.h>
#include <crypt.h>
#include <errno.h>
#include <grp.h>
#include <pwd.h>