mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-09 15:50:21 +00:00
7 lines
122 B
C
7 lines
122 B
C
|
#ifndef min
|
||
|
# define min(a,b) ((a) < (b) ? (a) : (b))
|
||
|
#endif
|
||
|
#ifndef max
|
||
|
# define max(a,b) ((a) > (b) ? (a) : (b))
|
||
|
#endif
|