blob: 5cafbb0a3a94a0c2074ddea5a8c2ac0e65003e7d [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/pwd.h>
int getpwnam_r(const char *nam, struct passwd *pwd, char *buffer, size_t bufsize,
struct passwd **result)
{
ARG_UNUSED(nam);
ARG_UNUSED(pwd);
ARG_UNUSED(buffer);
ARG_UNUSED(bufsize);
ARG_UNUSED(result);
return ENOSYS;
}
int getpwuid_r(uid_t uid, struct passwd *pwd, char *buffer, size_t bufsize, struct passwd **result)
{
ARG_UNUSED(uid);
ARG_UNUSED(pwd);
ARG_UNUSED(buffer);
ARG_UNUSED(bufsize);
ARG_UNUSED(result);
return ENOSYS;
}