LibCore: Don't include crypt.h and shadow.h in Account.cpp on Haiku

This commit is contained in:
nipos 2023-08-27 21:01:49 +02:00 committed by Andrew Kaster
parent 2e0960a7ef
commit 1d475e9312

View file

@ -16,7 +16,7 @@
#include <errno.h>
#include <grp.h>
#include <pwd.h>
#ifndef AK_OS_BSD_GENERIC
#if !defined(AK_OS_BSD_GENERIC) && !defined(AK_OS_HAIKU)
# include <crypt.h>
# include <shadow.h>
#endif