PennMUSH Community

Changeset 869

Show
Ignore:
Timestamp:
05/18/07 21:13:31 (2 years ago)
Author:
shawnw
Message:

Some bug fixes from my recent work.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 1.8.3/branches/devel/config.h.in

    r865 r869  
    137137 
    138138#undef HAVE_SETSID 
     139 
     140#undef HAVE_SETPGID 
    139141 
    140142#undef SETPGRP_VOID 
  • 1.8.3/branches/devel/hdrs/wait.h

    r865 r869  
    2020#ifdef HAS_WAITPID 
    2121typedef int WAIT_TYPE; 
    22 #else /* Use wait4 */ 
     22#else /* Use wait3 */ 
    2323#ifdef UNION_WAIT 
    24 typedef uinion wait WAIT_TPE; 
     24typedef union wait WAIT_TPE; 
    2525#else 
    2626typedef int WAIT_TYPE; 
  • 1.8.3/branches/devel/src/bsd.c

    r865 r869  
    900900    } 
    901901#endif 
    902 #endif /! WIN32 */ 
     902#endif /* !WIN32 */ 
    903903 
    904904 
  • 1.8.3/branches/devel/src/game.c

    r865 r869  
    6969#include "dbio.h" 
    7070#include "pcre.h" 
     71#include "wait.h" 
    7172#include "ansi.h" 
    7273 
  • 1.8.3/branches/devel/src/wait.c

    r866 r869  
    99#include <unistd.h> 
    1010#endif 
     11#ifdef I_SYS_TYPES 
     12#include <sys/types.h> 
     13#endif 
    1114#ifdef HAVE_SYS_TIME_H 
    1215#include <sys/time.h> 
     16#endif 
     17#ifdef HAVE_SYS_RESOURCE_H 
     18#include <sys/resource.h> 
    1319#endif 
    1420#include <errno.h>