forked from github/server
define SIZE_MAX if needed.
This commit is contained in:
parent
cd0ba434b0
commit
308c9f642f
1 changed files with 5 additions and 0 deletions
|
@ -105,6 +105,11 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
/* pre-C99 compatibility */
|
||||||
|
#ifndef SIZE_MAX
|
||||||
|
#define SIZE_MAX ((size_t)(-1))
|
||||||
|
#endif
|
||||||
|
|
||||||
#define ECHECK_VERSION "4.01"
|
#define ECHECK_VERSION "4.01"
|
||||||
|
|
||||||
extern int *storms;
|
extern int *storms;
|
||||||
|
|
Loading…
Reference in a new issue