Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (21 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28dir.info
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libiberty/waitpid.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    1414#include "config.h"
    1515#endif
     16
     17/* On some systems (such as WindISS), you must include <sys/types.h>
     18   to get the definition of "pid_t" before you include <sys/wait.h>.  */
     19#include <sys/types.h>
     20
    1621#ifdef HAVE_SYS_WAIT_H
    1722#include <sys/wait.h>
    1823#endif
    1924
    20 int
     25pid_t
    2126waitpid (pid, stat_loc, options)
    22         int pid, *stat_loc, options;
     27     pid_t pid;
     28     int *stat_loc, options;
    2329{
    2430  for (;;)
Note: See TracChangeset for help on using the changeset viewer.