blob: de92831316ee68309f6956ed8ca3f500b035eb03 [file] [log] [blame]
John Criswell2efc5b52003-10-20 20:11:43 +00001/*===-- Config/sys/wait.h - Annotation classes ------------------*- C++ -*-===//
2 *
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