Mercurial > emacs
comparison src/xmenu.c @ 39682:5f60884970a8
Don't define min/max.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Mon, 08 Oct 2001 08:07:49 +0000 |
parents | 53ed5f089c9e |
children | 38c1890338cc |
comparison
equal
deleted
inserted
replaced
39681:87cc624f4e1e | 39682:5f60884970a8 |
---|---|
78 #include "../lwlib/lwlib.h" | 78 #include "../lwlib/lwlib.h" |
79 #else /* not USE_X_TOOLKIT */ | 79 #else /* not USE_X_TOOLKIT */ |
80 #include "../oldXMenu/XMenu.h" | 80 #include "../oldXMenu/XMenu.h" |
81 #endif /* not USE_X_TOOLKIT */ | 81 #endif /* not USE_X_TOOLKIT */ |
82 #endif /* HAVE_X_WINDOWS */ | 82 #endif /* HAVE_X_WINDOWS */ |
83 | |
84 #define min(x,y) (((x) < (y)) ? (x) : (y)) | |
85 #define max(x,y) (((x) > (y)) ? (x) : (y)) | |
86 | 83 |
87 #ifndef TRUE | 84 #ifndef TRUE |
88 #define TRUE 1 | 85 #define TRUE 1 |
89 #define FALSE 0 | 86 #define FALSE 0 |
90 #endif /* no TRUE */ | 87 #endif /* no TRUE */ |