Fixed macro name clash.

This commit is contained in:
Ralph Lange
2002-11-07 17:08:30 +00:00
parent 8c936886e8
commit e6501454af
3 changed files with 18 additions and 12 deletions

View File

@@ -51,8 +51,12 @@ struct msgBuff { /* line output structure */
};
typedef struct msgBuff TAB_BUFFER;
#define MIN(x,y) ((x < y)?x:y)
#define MAX(x,y) ((x > y)?x:y)
#ifndef MIN
# define MIN(x,y) (((x) < (y)) ? (x) : (y))
#endif
#ifndef MAX
# define MAX(x,y) (((x) < (y)) ? (x) : (y))
#endif
/* Local Routines */
static void printDbAddr(long status,DBADDR *paddr);