index
:
openlinux.git
master
Openlinux source tree
Kacper Fiedorowicz
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
libc
/
unistd
/
dup.c
blob: 764c16f614a42de5445c0ae89b03b265fbea030e (
plain
)
1
2
3
4
5
6
#include <syscall.h> int dup(int fildes) { return syscall(dup, fildes); }