1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Fixed LONG_MAX in BCMath ext (#15663)

This commit is contained in:
Saki Takamachi
2024-08-31 01:07:33 +09:00
committed by GitHub
parent 58aa6fc830
commit a27878cff3

View File

@@ -75,7 +75,7 @@ typedef struct bc_struct {
#define MIN(a, b) ((a)>(b)?(b):(a))
#ifndef LONG_MAX
#define LONG_MAX 0x7ffffff
#define LONG_MAX 0x7fffffff
#endif