8 lines
112 B
C
8 lines
112 B
C
#include "lib.h"
|
|
|
|
PUBLIC int dup(fd)
|
|
int fd;
|
|
{
|
|
return callm1(FS, DUP, fd, 0, 0, NIL_PTR, NIL_PTR, NIL_PTR);
|
|
}
|