summaryrefslogtreecommitdiff
path: root/include/llvm/Config/sys/time.h
blob: f5ca3961f25e33a6b794f3aca7e4e997374d15b6 (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
/*===-- Config/sys/time.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 replacement for sys/time.h (if it
 *	lives on the system).
 *
 *===----------------------------------------------------------------------===//
 */

#ifndef _CONFIG_SYS_TIME_H
#define _CONFIG_SYS_TIME_H

#include "llvm/Config/config.h"

#if defined(HAVE_SYS_TIME_H) && !defined(_MSC_VER)
#include <sys/time.h>
#endif

#endif