Annotation of embedaddon/php/ext/gd/libgd/gd_intern.h, revision 1.1.1.1

1.1       misho       1: #ifndef GD_INTERN_H
                      2: #define GD_INTERN_H
                      3: #ifndef MIN
                      4: #define MIN(a,b) ((a)<(b)?(a):(b))
                      5: #endif
                      6: #define MIN3(a,b,c) ((a)<(b)?(MIN(a,c)):(MIN(b,c)))
                      7: #ifndef MAX
                      8: #define MAX(a,b) ((a)<(b)?(b):(a))
                      9: #endif
                     10: #define MAX3(a,b,c) ((a)<(b)?(MAX(b,c)):(MAX(a,c)))
                     11: 
                     12: #endif
                     13: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>