Sign in
chromium
/
native_client
/
nacl-bionic
/
cf0f6b82425dbd52301c81ab105b2d18311f8141
/
.
/
libc
/
arch-nacl
/
syscalls
/
lstat.c
blob: 93dd23e770e2c98a82d4e21b97016efadf987ca0 [
file
] [
log
] [
blame
]
#include
<errno.h>
#include
<sys/stat.h>
int
lstat
(
const
char
*
name
,
struct
stat
*
buf
)
{
errno
=
ENOSYS
;
return
-
1
;
}