blob: 74e310071f51d6ebe0b4e2bedc3a111c380d02db [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001/*
2 * Syscalls for uClibc
3 *
4 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
5 *
6 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
7 */
8/* Extracted from ../common/syscalls.c by Erik Andersen <andersen@codepoet.org>
9 * Adapted to FR-V by Alexandre Oliva <aoliva@redhat.com>
10 */
11
12#include <sys/syscall.h>
13#include <unistd.h>
14#include <sys/stat.h>
15
16_syscall2(int, stat, const char *, file_name, struct stat *, buf)
17libc_hidden_def(stat)