This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <sys/syscall.h> /* Definition of SYS_* constants */ | |
#include <unistd.h> | |
#include <errno.h> | |
#include <stdio.h> | |
#include <spawn.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <fcntl.h> | |
#ifndef __NR_pidfd_open |
OlderNewer