blob: 3e0ea1e81099571c91f52863c6d235346329a6f2 (
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 "Config/config.h"
#if defined(HAVE_SYS_TIME_H) && !defined(_MSC_VER)
#include <sys/time.h>
#endif
#endif
|