Changeset 869
- Timestamp:
- 05/18/07 21:13:31 (2 years ago)
- Files:
-
- 1.8.3/branches/devel/config.h.in (modified) (1 diff)
- 1.8.3/branches/devel/hdrs/wait.h (modified) (1 diff)
- 1.8.3/branches/devel/src/bsd.c (modified) (1 diff)
- 1.8.3/branches/devel/src/game.c (modified) (1 diff)
- 1.8.3/branches/devel/src/wait.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.8.3/branches/devel/config.h.in
r865 r869 137 137 138 138 #undef HAVE_SETSID 139 140 #undef HAVE_SETPGID 139 141 140 142 #undef SETPGRP_VOID 1.8.3/branches/devel/hdrs/wait.h
r865 r869 20 20 #ifdef HAS_WAITPID 21 21 typedef int WAIT_TYPE; 22 #else /* Use wait 4*/22 #else /* Use wait3 */ 23 23 #ifdef UNION_WAIT 24 typedef u inion wait WAIT_TPE;24 typedef union wait WAIT_TPE; 25 25 #else 26 26 typedef int WAIT_TYPE; 1.8.3/branches/devel/src/bsd.c
r865 r869 900 900 } 901 901 #endif 902 #endif / !WIN32 */902 #endif /* !WIN32 */ 903 903 904 904 1.8.3/branches/devel/src/game.c
r865 r869 69 69 #include "dbio.h" 70 70 #include "pcre.h" 71 #include "wait.h" 71 72 #include "ansi.h" 72 73 1.8.3/branches/devel/src/wait.c
r866 r869 9 9 #include <unistd.h> 10 10 #endif 11 #ifdef I_SYS_TYPES 12 #include <sys/types.h> 13 #endif 11 14 #ifdef HAVE_SYS_TIME_H 12 15 #include <sys/time.h> 16 #endif 17 #ifdef HAVE_SYS_RESOURCE_H 18 #include <sys/resource.h> 13 19 #endif 14 20 #include <errno.h>
