pidfd_open.2: tfix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2019-09-23 11:43:13 +02:00
parent d883766832
commit 690fbab2ee
1 changed files with 2 additions and 2 deletions

View File

@ -130,8 +130,8 @@ returns, and indicates that the file descriptor is readable.
#define __NR_pidfd_open 434
#endif
static
int pidfd_open(pid_t pid, unsigned int flags)
static int
pidfd_open(pid_t pid, unsigned int flags)
{
return syscall(__NR_pidfd_open, pid, flags);
}