]> git.lizzy.rs Git - plan9front.git/blob - sys/src/ape/lib/9/fd2path.c
ape/lib9: expose fd2path (thanks phil9)
[plan9front.git] / sys / src / ape / lib / 9 / fd2path.c
1 #include <lib9.h>
2
3 extern  int     _FD2PATH(int, char*, int);
4
5 int
6 fd2path(int fd, char *buf, int nbuf)
7 {
8         return _FD2PATH(fd, buf, nbuf);
9 }