summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/dup3.c
blob: 261f18f3434af43ca75358db233b4d2144a308fa (plain)
1
2
3
4
5
6
7
8


#include <syscall.h> // for __syscall_3, syscall

int dup3(int fildes, int fildes2, int flag)
{
	return syscall(dup3, fildes, fildes2, flag);
}