OSDN Git Service

replace some header files.
[putex/putex.git] / src / texsourc / c-limits.h
1 /* c-limits.h: include the system parameter file.
2
3    Copyright 1992 Karl Berry
4    Copyright 2007 TeX Users Group
5    Copyright 2014 Clerk Ma
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful, but
13    WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20    02110-1301 USA.  */
21
22 #ifndef C_LIMITS_H
23 #define C_LIMITS_H
24
25 #include "c-std.h"
26
27 #ifdef LIMITS_H_MISSING
28   #include <sys/param.h>
29 #else
30   #include <limits.h>
31 #endif
32
33 #if !defined (FLOAT_H_MISSING) && !defined (FLT_MAX)
34   #include <float.h>
35 #endif
36
37 #endif /* not C_LIMITS_H */