Merge from emacs-23; up to 2010-06-12T10:58:54Z!romain@orebokech.com.
[bpt/emacs.git] / lib / min-max.h
1 #ifndef min
2 # define min(a,b) ((a) < (b) ? (a) : (b))
3 #endif
4 #ifndef max
5 # define max(a,b) ((a) > (b) ? (a) : (b))
6 #endif