Change ifndef's to undef's

This commit is contained in:
Sean Purcell
2017-04-13 15:35:05 -07:00
parent 9227aae001
commit 42bac7fa84
3 changed files with 8 additions and 12 deletions
+2 -3
View File
@@ -96,9 +96,8 @@ void FIO_setNotificationLevel(unsigned level) { g_displayLevel=level; }
static const clock_t refreshRate = CLOCKS_PER_SEC * 15 / 100;
static clock_t g_time = 0;
#ifndef MIN
# define MIN(a,b) ((a) < (b) ? (a) : (b))
#endif
#undef MIN
#define MIN(a,b) ((a) < (b) ? (a) : (b))
/* ************************************************************
* Avoid fseek()'s 2GiB barrier with MSVC, MacOS, *BSD, MinGW