Files
MentOS/libc/src/unistd/setpgid.c
T

12 lines
338 B
C

/// MentOS, The Mentoring Operating system project
/// @file setpgid.c
/// @brief
/// @copyright (c) 2014-2021 This file is distributed under the MIT License.
/// See LICENSE.md for details.
#include "sys/unistd.h"
#include "system/syscall_types.h"
#include "sys/errno.h"
_syscall2(int, setpgid, pid_t, pid, pid_t, pgid)