summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/dup.c
blob: 73fb1a6efbeff028856ca7997b5fc0db41f82c9a (plain)
1
2
3
4
5
6
7
8
9



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

int dup(int fildes)
{
	return syscall(dup, fildes);
}