minix/lib/posix/_dup.c

12 lines
159 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
#include <lib.h>
#define dup _dup
#define fcntl _fcntl
#include <fcntl.h>
#include <unistd.h>
PUBLIC int dup(fd)
int fd;
{
return(fcntl(fd, F_DUPFD, 0));
}