Home
last modified time | relevance | path

Searched refs:ONLCR (Results 1 – 4 of 4) sorted by relevance

/xnu-8796.121.2/bsd/sys/
H A Dttydefaults.h79 #define TTYDEF_OFLAG (OPOST | ONLCR)
H A Dtermios.h140 #define ONLCR 0x00000002 /* map NL to CR-NL (ala CRMOD) */ macro
/xnu-8796.121.2/bsd/kern/
H A Dtty_compat.c564 if (iflag & ICRNL || oflag & ONLCR) { in ttcompatgetflags()
666 oflag |= ONLCR; in ttcompatsetflags()
669 oflag &= ~ONLCR; in ttcompatsetflags()
H A Dtty.c869 if (c == '\n' && ISSET(tp->t_oflag, ONLCR)) { in ttyoutput()