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
+4 -6
View File
@@ -147,12 +147,10 @@ typedef struct {
#ifndef MIN
# define MIN(a,b) ((a) < (b) ? (a) : (b))
#endif
#ifndef MAX
# define MAX(a,b) ((a) > (b) ? (a) : (b))
#endif
#undef MIN
#undef MAX
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#define MAX(a,b) ((a) > (b) ? (a) : (b))
static int BMK_benchMem(const void* srcBuffer, size_t srcSize,
const char* displayName, int cLevel,