Changes For Bug 352
[oota-llvm.git] / include / llvm / Config / sys / types.h
1 /*===-- Config/sys/types.h --------------------------------------*- C++ -*-===//
2  * 
3  *                     The LLVM Compiler Infrastructure
4  *
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  *===----------------------------------------------------------------------===//
9  *      This header file is the autoconf substitute for sys/types.h.  It
10  *      includes it for us if it exists on this system.
11  *
12  *===----------------------------------------------------------------------===//
13  */
14
15 #ifndef _CONFIG_SYS_TYPES_H
16 #define _CONFIG_SYS_TYPES_H
17
18 #include "llvm/Config/config.h"
19
20 #ifdef HAVE_SYS_TYPES_H
21 #include <sys/types.h>
22 #endif
23
24 #endif
25