Be a bit more efficient when processing the active and inactive
[oota-llvm.git] / include / llvm / Config / windows.h
1 /* 
2  *                     The LLVM Compiler Infrastructure
3  *
4  * This file was developed by the LLVM research group and is distributed under
5  * the University of Illinois Open Source License. See LICENSE.TXT for details.
6  * 
7  ******************************************************************************
8  *
9  * Description:
10  *      This header file is the autoconf replacement for windows.h (if it lives
11  *      on the system).
12  */
13
14 #ifndef LLVM_CONFIG_WINDOWS_H
15 #define LLVM_CONFIG_WINDOWS_H
16
17 #include "Config/config.h"
18
19 #ifdef HAVE_WINDOWS_H
20 #include <windows.h>
21 #undef min
22 #undef max
23 #endif
24
25 #endif