]> code.delx.au - gnu-emacs/blob - lib/min-max.h
Replace eldoc-documentation-function with a hook
[gnu-emacs] / 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