2003-11-25 02:54:24 +00:00
|
|
|
#include "9term.h"
|
2003-11-25 03:02:54 +00:00
|
|
|
#include <libutil.h>
|
2003-11-25 02:54:24 +00:00
|
|
|
|
|
|
|
|
int
|
|
|
|
|
getchildwd(int pid, char *wdir, int bufn)
|
|
|
|
|
{
|
|
|
|
|
USED(pid);
|
|
|
|
|
USED(wdir);
|
|
|
|
|
USED(bufn);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
getpts(int fd[], char *slave)
|
|
|
|
|
{
|
2003-12-03 22:50:48 +00:00
|
|
|
return openpty(&fd[1], &fd[0], slave, 0, 0);
|
2003-11-25 02:54:24 +00:00
|
|
|
}
|