If we can't find INT64_MAX, set it to a reasonable default value,
[oota-llvm.git] / include / Config / stdio.h
1 /*
2  * Header file: stdio.h
3  *
4  * Description:
5  *      This header file is the autoconf replacement for stdio.h (if it lives
6  *      on the system).
7  */
8
9 #ifndef _CONFIG_STDIO_H
10 #define _CONFIG_STDIO_H
11
12 #include "Config/config.h"
13
14 /*
15  * Assume that stdio.h exists if autoconf find the ANSI C header files.
16  * I'd think stdlib.h would be here to, but I guess not.
17  */
18 #ifdef STDC_HEADERS
19 #include <stdio.h>
20 #endif
21
22 #endif