aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Config/sys/time.h
blob: 2764994717c006186451b89d6de2dff9caf6bc92 (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"

#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif

#endif