Changeset 2479
- Timestamp:
- Jun 23, 2008, 11:02:26 PM (15 years ago)
- Location:
- neercs/trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
neercs/trunk/src/main.c
r2478 r2479 28 28 #include <time.h> 29 29 30 #if defined HAVE_PTY_H31 # include <pty.h> /* for openpty and forkpty */32 #else33 # include <util.h> /* for OS X */34 #endif35 30 #if !defined HAVE_GETOPT_LONG 36 31 # include "mygetopt.h" -
neercs/trunk/src/term.c
r2455 r2479 19 19 #include <stdio.h> 20 20 #include <string.h> 21 #include <pty.h> 21 #if defined HAVE_PTY_H 22 # include <pty.h> /* for openpty and forkpty */ 23 #else 24 # include <util.h> /* for OS X */ 25 #endif 22 26 #include <unistd.h> 23 27 #include <fcntl.h>
Note: See TracChangeset
for help on using the changeset viewer.