Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
strace
/
5e9944df2c8b75a8fec46a597d34934c7525d4ca
/
.
/
tests
/
memfd_create.c
blob: 9fe7f6d4987bdd173e6a4183f42e42ba555e7883 [
file
] [
log
] [
blame
]
#include
"tests.h"
#include
<unistd.h>
#include
<sys/syscall.h>
#ifdef
__NR_memfd_create
int
main
(
void
)
{
syscall
(
__NR_memfd_create
,
"strace"
,
7
);
return
0
;
}
#else
SKIP_MAIN_UNDEFINED
(
"__NR_memfd_create"
)
#endif