Chris Lattner | 32f54f3 | 2004-02-26 08:01:30 +0000 | [diff] [blame] | 1 | /*===-- Config/sys/wait.h ---------------------------------------*- C++ -*-===// |
John Criswell | 2efc5b5 | 2003-10-20 20:11:43 +0000 | [diff] [blame] | 2 | * |
| 3 | * The LLVM Compiler Infrastructure |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 4 | * |
John Criswell | 2efc5b5 | 2003-10-20 20:11:43 +0000 | [diff] [blame] | 5 | * This file was developed by the LLVM research group and is distributed under |
| 6 | * the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | * |
| 8 | *===----------------------------------------------------------------------===// |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 9 | * This header file includes the headers needed for the wait() system |
| 10 | * call. |
John Criswell | 2efc5b5 | 2003-10-20 20:11:43 +0000 | [diff] [blame] | 11 | *===----------------------------------------------------------------------===// |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 12 | */ |
| 13 | |
| 14 | #ifndef _CONFIG_SYS_WAIT_H |
| 15 | #define _CONFIG_SYS_WAIT_H |
| 16 | |
| 17 | #include "Config/config.h" |
| 18 | |
| 19 | #ifdef HAVE_SYS_WAIT_H |
| 20 | #include <sys/wait.h> |
| 21 | #endif |
| 22 | |
| 23 | #endif |
| 24 | |