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:
@@ -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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user