blob: e5a787e5e1409aad28700d40c38020bebac16dfb [file] [log] [blame]
John Criswell4c8472d2003-10-20 20:11:43 +00001/*
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 ******************************************************************************
John Criswell3ef61af2003-06-30 21:59:07 +00008 *
9 * Description:
10 * This header file is the autoconf replacement for limits.h (if it lives
11 * on the system).
12 */
13
14#ifndef _CONFIG_LIMITS_H
15#define _CONFIG_LIMITS_H
16
17#include "Config/config.h"
18
19#ifdef HAVE_LIMITS_H
20#include <limits.h>
21#endif
22
23#endif