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