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