etc/services - sync with NetBSD-8
[minix.git] / minix / lib / libc / sys / dup.c
blob207fa20a11ceaf26d9ce1e1b34fa81bf02073cee
1 #include <sys/cdefs.h>
2 #include "namespace.h"
3 #include <lib.h>
5 #include <fcntl.h>
6 #include <unistd.h>
8 int dup(fd)
9 int fd;
11 return(fcntl(fd, F_DUPFD, 0));