Minix1.5/lib/posix/dup.c

#include <lib.h>

PUBLIC int dup(fd)
int fd;
{
  return(callm1(FS, DUP, fd, 0, 0, NIL_PTR, NIL_PTR, NIL_PTR));
}