Update NOTES, hack on 9term a little.

This commit is contained in:
rsc 2003-11-25 02:54:24 +00:00
parent 3765283ccf
commit 21a17ff3e9
5 changed files with 32 additions and 15 deletions

View file

@ -1 +1,17 @@
#include "Linux.c"
#include "9term.h"
int
getchildwd(int pid, char *wdir, int bufn)
{
USED(pid);
USED(wdir);
USED(bufn);
return -1;
}
int
getpts(int fd[], char *slave)
{
openpty(&fd[1], &fd[0], slave, 0, 0);
return 0;
}