plan9fox/sys/src/ape/lib/9/fd2path.c
Ori Bernstein 6445a14f63 ape/lib9: expose fd2path (thanks phil9)
Fd2path is a useful call for the netsurf plan9 frontend,
so we should expose it.
2021-02-20 21:02:07 -08:00

10 lines
136 B
C

#include <lib9.h>
extern int _FD2PATH(int, char*, int);
int
fd2path(int fd, char *buf, int nbuf)
{
return _FD2PATH(fd, buf, nbuf);
}