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
commit ce77caf479
Notes: sideshowbarker 2024-07-18 18:49:58 +09:00
6 changed files with 35 additions and 9 deletions

View file

@ -6,8 +6,9 @@
#include <AK/Base64.h>
#include <AK/Types.h>
#include <LibCrypto/Hash/SHA2.h>
#include <crypt.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
extern "C" {