aboutsummaryrefslogtreecommitdiff
path: root/lib/sys/dup2.h
blob: 9e67eec64907cef7245e2f750c3887425a6b7482 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef DUP2_H
#define DUP2_H

#include "syscalls.h"

static int dup2(unsigned int oldfd, unsigned int newfd)
{
	return syscall(DUP2, oldfd, newfd);
}

#endif