repo.or.cz
/
emacs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove configure's --with-mmdf option
[emacs.git]
/
lib
/
min-max.h
blob
997cdd191eb765c822a0dd7e22b5c4ead6533ec3
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