blob: b3db60e435c4925dc108b33e1a289ab311b8685f [file] [log] [blame]
Chris Lattner32f54f32004-02-26 08:01:30 +00001/*===-- Config/sys/wait.h ---------------------------------------*- C++ -*-===//
John Criswell2efc5b52003-10-20 20:11:43 +00002 *
3 * The LLVM Compiler Infrastructure
John Criswell7a73b802003-06-30 21:59:07 +00004 *
John Criswell2efc5b52003-10-20 20:11:43 +00005 * 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 Criswell7a73b802003-06-30 21:59:07 +00009 * This header file includes the headers needed for the wait() system
10 * call.
John Criswell2efc5b52003-10-20 20:11:43 +000011 *===----------------------------------------------------------------------===//
John Criswell7a73b802003-06-30 21:59:07 +000012 */
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