OSDN Git Service

Enable _GNU_SOURCE build wide, trying to get consistent interfaces, else IMA is a...
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / frv / lstat.c
1 /*
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 "../common/syscalls.h"
13 #include <unistd.h>
14 #include <sys/stat.h>
15
16 libc_hidden_proto(lstat)
17 _syscall2(int, lstat, const char *, file_name, struct stat *, buf);
18 libc_hidden_def(lstat)