1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-16 08:15:31 +00:00

Remove #ifdef LINUX max/min definitions. (#215)

These don't appear to be needed.
This commit is contained in:
Bruce Mitchener 2021-01-13 08:21:54 +07:00 committed by GitHub
parent 19329883d5
commit 414a4ecbbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,16 +36,6 @@
#include "xdefs.h"
#endif /* XWINDOW */
/* from pixrect's rect.h: */
#ifdef LINUX
#ifndef max
#define max(a, b) (((a) > (b)) ? (a) : (b))
#endif
#ifndef min
#define min(a, b) (((a) < (b)) ? (a) : (b))
#endif
#endif /* LINUX */
#ifndef XWINDOW
#ifndef NOPIXRECT
#ifndef DOS