Index: generic/nsfInt.h =================================================================== diff -u -N -r1919d17fefad9446170fa6d532b439f494189b32 -r8a1a43a35c119f8a1c596e445b7a868cc1066b99 --- generic/nsfInt.h (.../nsfInt.h) (revision 1919d17fefad9446170fa6d532b439f494189b32) +++ generic/nsfInt.h (.../nsfInt.h) (revision 8a1a43a35c119f8a1c596e445b7a868cc1066b99) @@ -1363,5 +1363,7 @@ #define NsfHasTclSpace(str) \ (strpbrk((str), " \t\n\r\v\f") != NULL) +#define NsfMax(a,b) ((a) > (b) ? a : b) +#define NsfMin(a,b) ((a) < (b) ? a : b) #endif /* _nsf_int_h_ */