Lines Matching defs:in
11 GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
78 register char *in, *out, *p;
82 in = strchr (line, '\n');
83 if (in == 0)
86 out = in;
90 while (*in != '\0')
93 the end just before IN, and BACKSLASH gets nonzero
97 for (p = in - 1; p >= line && *p == '\\'; --p)
105 if (in == out - 1)
114 ++in;
120 in = next_token (in);
126 /* If the newline isn't quoted, put it in the output. */
131 while (*in != '\0')
132 if (*in == '\\')
134 p = in + 1;
139 in = p;
142 while (in < p)
143 *out++ = *in++;
146 *out++ = *in++;
153 /* Print N spaces (used in debug for target-depth). */
421 /* Return the address of the first whitespace or null in the string S. */
461 /* Return the address of the first nonwhitespace or null in the string S. */
471 /* Find the next token in PTR; return the address of it, and store the
602 setregid functions, but they don't work as in BSD and only the POSIX.1
610 /* Some POSIX.1 systems have the seteuid and setegid functions. In a
612 non-POSIX systems have them too but they do not work in the POSIX style
655 run in a child fork whose stdout is piped. */
699 /* We are in "make access" mode. This means that the effective user and
719 (returned by geteuid/getegid, now in make_uid/make_gid),
720 the real ID (return by getuid/getgid, now in user_uid/user_gid),
729 /* In 4BSD, the setreuid/setregid calls set both the real and effective IDs.
733 you can toggle between your two alternatives by swapping the values in a
775 /* See comments in user_access, above. */
880 printf can succeed in writing to the internal stream buffer, and yet
894 on being able to detect failure in other tools via their exit status. */