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
@@ -89,9 +89,8 @@ unsigned DiB_isError(size_t errorCode) { return ERR_isError(errorCode); }
const char* DiB_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); }
#ifndef MIN
# define MIN(a,b) ((a) < (b) ? (a) : (b))
#endif
#undef MIN
#define MIN(a,b) ((a) < (b) ? (a) : (b))
/* ********************************************************