blob: af395c88fa00c5a2d16c3ac603ebf1c13e885e29 [file] [log] [blame]
/*
* Copyright (c) 2024 Meta Platforms
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <errno.h>
#include <zephyr/sys/util.h>
#include <zephyr/posix/grp.h>
int getgrnam_r(const char *name, struct group *grp, char *buffer, size_t bufsize,
struct group **result)
{
ARG_UNUSED(name);
ARG_UNUSED(grp);
ARG_UNUSED(buffer);
ARG_UNUSED(bufsize);
ARG_UNUSED(result);
return ENOSYS;
}
int getgrgid_r(gid_t gid, struct group *grp, char *buffer, size_t bufsize, struct group **result)
{
ARG_UNUSED(gid);
ARG_UNUSED(grp);
ARG_UNUSED(buffer);
ARG_UNUSED(bufsize);
ARG_UNUSED(result);
return ENOSYS;
}