B - fixed usage, DISPLAY :0 vs :0.0 9term - fixed various terminal things rc - notice traps in Read _p9dir - only run disk code for disks dirread - getdirentries on FreeBSD and Linux are different w.r.t. meaning of off. notify - set up so signals interrupt system calls bprint - use bfmt.
18 lines
226 B
C
18 lines
226 B
C
#include "9term.h"
|
|
#include <libutil.h>
|
|
|
|
int
|
|
getchildwd(int pid, char *wdir, int bufn)
|
|
{
|
|
USED(pid);
|
|
USED(wdir);
|
|
USED(bufn);
|
|
return -1;
|
|
}
|
|
|
|
int
|
|
getpts(int fd[], char *slave)
|
|
{
|
|
return openpty(&fd[1], &fd[0], slave, 0, 0);
|
|
}
|