/* * Copyright 2022 Meta * * SPDX-License-Identifier: Apache-2.0 */ #include #include #include int stat(const char *restrict path, struct stat *restrict buf) { ARG_UNUSED(path); ARG_UNUSED(buf); errno = ENOTSUP; return -1; }