mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-18 10:16:51 +00:00
(min, max): Don't define if already defined.
This commit is contained in:
parent
9c35997bcb
commit
e4b68333a9
@ -115,8 +115,12 @@ extern void _XEditResCheckMessages ();
|
||||
#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;
|
||||
|
Loading…
Reference in New Issue
Block a user