summaryrefslogtreecommitdiff
path: root/include/llvm/Config/sys/types.h
blob: fd6becd38f0688b9af8bf495613f11288174b5c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*===-- Config/sys/types.h --------------------------------------*- C++ -*-===//
 * 
 *                     The LLVM Compiler Infrastructure
 *
 * This file was developed by the LLVM research group and is distributed under
 * the University of Illinois Open Source License. See LICENSE.TXT for details.
 * 
 *===----------------------------------------------------------------------===//
 *	This header file is the autoconf substitute for sys/types.h.  It
 *	includes it for us if it exists on this system.
 *
 *===----------------------------------------------------------------------===//
 */

#ifndef _CONFIG_SYS_TYPES_H
#define _CONFIG_SYS_TYPES_H

#include "llvm/Config/config.h"

#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif

#endif