Changes For Bug 352
[oota-llvm.git] / include / llvm / Config / sys / time.h
1 /*===-- Config/sys/time.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 replacement for sys/time.h (if it
10  *      lives on the system).
11  *
12  *===----------------------------------------------------------------------===//
13  */
14
15 #ifndef _CONFIG_SYS_TIME_H
16 #define _CONFIG_SYS_TIME_H
17
18 #include "llvm/Config/config.h"
19
20 #if defined(HAVE_SYS_TIME_H) && !defined(_MSC_VER)
21 #include <sys/time.h>
22 #endif
23
24 #endif