Home
last modified time | relevance | path

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

/freebsd-14-stable/usr.bin/xargs/
HDxargs.c788 FILE *ttyfp; in prompt() local
790 if ((ttyfp = fopen(_PATH_TTY, "r")) == NULL) in prompt()
794 if ((response = fgetln(ttyfp, &rsize)) == NULL || in prompt()
796 (void)fclose(ttyfp); in prompt()
801 (void)fclose(ttyfp); in prompt()
/freebsd-14-stable/usr.bin/pr/
HDpr.c155 FILE *ttyfp; in ttypause() local
159 if ((ttyfp = fopen("/dev/tty", "r")) != NULL) { in ttypause()
161 while ((pch = getc(ttyfp)) != '\n' && pch != EOF) in ttypause()
163 (void)fclose(ttyfp); in ttypause()