Lines Matching defs:n
180 char *no_ppp_msg = "Sorry - this system lacks PPP kernel support\n";
440 option_error("connect script is required for demand-dialling\n");
698 * Do the equivalent of `mesg n' to stop broadcast messages.
1223 (void) fprintf(pidfile, "%u\n", (unsigned)getpid());
1242 (void) fprintf(pidfile, "%u\n", (unsigned)getpid());
1244 (void) fprintf(pidfile, "%s\n", ifname);
2258 fatal("Virtual memory exhausted allocating %s\n", msg);
2575 (void) flprintf(strptr, "In %s phase\n", phase_name(phase));
2645 int n, nfds;
2851 n = nobuf;
2852 if (olevel + n > max_level)
2853 n = max_level - olevel;
2854 n = write(ofd, obufp, n);
2855 if (n < 0) {
2865 obufp += n;
2866 nobuf -= n;
2867 olevel += n;
2873 n = nibuf;
2874 if (ilevel + n > max_level)
2875 n = max_level - ilevel;
2876 n = write(pty_master, ibufp, n);
2877 if (n < 0) {
2888 ibufp += n;
2889 nibuf -= n;
2890 ilevel += n;