Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/klibc/getpt.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1297 - (show annotations) (download)
Fri May 27 15:12:11 2011 UTC (12 years, 11 months ago) by niro
File MIME type: text/plain
File size: 238 byte(s)
-updated to klibc-1.5.22 with mntproc definitions patch included
1 /*
2 * getpt.c
3 *
4 * GNU extension to the standard Unix98 pty suite
5 */
6
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include <unistd.h>
10 #include <termios.h>
11 #include <fcntl.h>
12
13 int getpt(void)
14 {
15 return open("/dev/ptmx", O_RDWR | O_NOCTTY);
16 }