aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/9term/Darwin.c
blob: 369f7da2fc1c9c43b32626851b28c4c0257146c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#define getpts not_using_this_getpts
#include "bsdpty.c"
#undef getpts

int
getpts(int fd[], char *slave)
{
       fd[1] = posix_openpt(ORDWR);
       if (fd[1] >= 0) {
               grantpt(fd[1]);
               unlockpt(fd[1]);
               fchmod(fd[1], 0620);
               strcpy(slave, ptsname(fd[1]));
               if ((fd[0] = open(slave, ORDWR)) >= 0)
                       return 0;
               close(fd[1]);
       }
       sysfatal("no ptys");
       return 0;
}