1
0
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:
Richard M. Stallman 1996-02-08 21:58:53 +00:00
parent 9c35997bcb
commit e4b68333a9

View File

@ -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;