Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
refs/heads/readonly_cache
/
.
/
test
/
other
/
test_euidaccess.c
blob: 4968a686c29394c7b52e50c518ececcc6105ef98 [
file
] [
edit
]
#define
_GNU_SOURCE
#include
<unistd.h>
#include
<stdio.h>
int
main
()
{
printf
(
"eaccess:%d\n"
,
eaccess
(
"."
,
F_OK
));
printf
(
"euidaccess:%d\n"
,
euidaccess
(
"."
,
F_OK
));
return
0
;
}