CLAMP 2031 kern/tty.c #define CLAMP(x, h, l) ((x) > h ? h : ((x) < l) ? l : (x)) CLAMP 2038 kern/tty.c #undef CLAMP