LibCore: Use generic AK_OS_BSD_GENERIC to hide Group::add_group()

This hides the method Group::add_group() on both MacOS and OpenBSD since
the function putgrent(), which is essential for add_group() to work, is
not available on these OSes.
This commit is contained in:
Kenneth Myhra 2022-01-20 20:58:32 +01:00 committed by Andreas Kling
commit 6df3fdd83f
Notes: sideshowbarker 2024-07-17 20:31:07 +09:00
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@
namespace Core {
#ifndef AK_OS_MACOS
#ifndef AK_OS_BSD_GENERIC
ErrorOr<void> Group::add_group(Group& group)
{
if (group.name().is_empty())