1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00
emacs/cross/lib/min-max.h
Po Lu de3d8ae71b Update android port
* xcompile: Move to cross.
* cross: New directory.
2023-01-24 10:23:52 +08:00

6 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