Home
last modified time | relevance | path

Searched refs:ttyfp (Results 1 – 2 of 2) sorted by relevance

/freebsd/usr.bin/xargs/
H A Dxargs.c776 FILE *ttyfp; in prompt() local
778 if ((ttyfp = fopen(_PATH_TTY, "r")) == NULL) in prompt()
782 if (getline(&response, &rsize, ttyfp) < 0 || in prompt()
784 (void)fclose(ttyfp); in prompt()
789 (void)fclose(ttyfp); in prompt()
/freebsd/usr.bin/pr/
H A Dpr.c142 FILE *ttyfp; in ttypause() local
146 if ((ttyfp = fopen("/dev/tty", "r")) != NULL) { in ttypause()
148 while ((pch = getc(ttyfp)) != '\n' && pch != EOF) in ttypause()
150 (void)fclose(ttyfp); in ttypause()