#!/usr/bin/env python3
import ctypes
libc = ctypes.CDLL(None)
# libc may not have memfd_create (e.g., centos on travis)
libc.memfd_create("test".encode('utf8'), 0)