diff options
author | Filip Gawin <filip.gawin@zoho.com> | 2019-06-30 18:38:53 +0200 |
---|---|---|
committer | Filip Gawin <filip.gawin@zoho.com> | 2019-06-30 19:06:41 +0200 |
commit | 321c7e4af77cb064d3aee8f9fcc6e0b7e993c945 (patch) | |
tree | 9b47422c99ac1284fe7e428a56daf21e5df9f592 /src/common.h | |
parent | Merge pull request #79 from Nick007J/master (diff) | |
download | re3-321c7e4af77cb064d3aee8f9fcc6e0b7e993c945.tar re3-321c7e4af77cb064d3aee8f9fcc6e0b7e993c945.tar.gz re3-321c7e4af77cb064d3aee8f9fcc6e0b7e993c945.tar.bz2 re3-321c7e4af77cb064d3aee8f9fcc6e0b7e993c945.tar.lz re3-321c7e4af77cb064d3aee8f9fcc6e0b7e993c945.tar.xz re3-321c7e4af77cb064d3aee8f9fcc6e0b7e993c945.tar.zst re3-321c7e4af77cb064d3aee8f9fcc6e0b7e993c945.zip |
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.h b/src/common.h index efbc1f8c..f959de42 100644 --- a/src/common.h +++ b/src/common.h @@ -166,4 +166,4 @@ void re3_assert(const char *expr, const char *filename, unsigned int lineno, con #define BIT(num) (1<<(num)) #define max(a, b) (((a) > (b)) ? (a) : (b)) -#define min(a, b) (((a) < (b)) ? (a) : (b)) +#define min(a, b) (((a) < (b)) ? (a) : (b)) |