diff options
author | Zeev Suraski <zeev@php.net> | 2001-08-11 16:39:07 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-08-11 16:39:07 +0000 |
commit | f6f6c4d7e63d2eaf4ece7aee66f46a013b29bffa (patch) | |
tree | 4013e29cc962a2f0363f61d764da46d8302d828e /ext/bcmath/libbcmath/src | |
parent | bafa98109cb7ac4c95a4d47e010139f4cd100bde (diff) | |
download | php-git-f6f6c4d7e63d2eaf4ece7aee66f46a013b29bffa.tar.gz |
Whitespace
Diffstat (limited to 'ext/bcmath/libbcmath/src')
-rw-r--r-- | ext/bcmath/libbcmath/src/bcmath.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bcmath/libbcmath/src/bcmath.h b/ext/bcmath/libbcmath/src/bcmath.h index b7c338c4aa..a6c7627b6b 100644 --- a/ext/bcmath/libbcmath/src/bcmath.h +++ b/ext/bcmath/libbcmath/src/bcmath.h @@ -67,8 +67,8 @@ typedef struct bc_struct #undef MIN #undef MAX #endif -#define MAX(a,b) ((a)>(b)?(a):(b)) -#define MIN(a,b) ((a)>(b)?(b):(a)) +#define MAX(a, b) ((a)>(b)?(a):(b)) +#define MIN(a, b) ((a)>(b)?(b):(a)) #define ODD(a) ((a)&1) #ifndef TRUE |