Mercurial > emacs
diff src/xterm.c @ 14522:9cee3e7c6468
(min, max): Don't define if already defined.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Thu, 08 Feb 1996 21:58:53 +0000 |
| parents | 9bc700f13f97 |
| children | 64e5e68aef13 |
line wrap: on
line diff
--- a/src/xterm.c Thu Feb 08 19:04:58 1996 +0000 +++ b/src/xterm.c Thu Feb 08 21:58:53 1996 +0000 @@ -115,8 +115,12 @@ #include <X11/Xlibint.h> #endif +#ifndef min #define min(a,b) ((a)<(b) ? (a) : (b)) +#endif +#ifndef max #define max(a,b) ((a)>(b) ? (a) : (b)) +#endif /* This is a chain of structures for all the X displays currently in use. */ struct x_display_info *x_display_list;
