Lines Matching defs:line
76 char *line, *l, *p;
106 line = malloc(filesize + /* type */ 1 + /* NUL */ 1);
107 if (!line) {
113 line[0] = __KLIBC_ARG_NONZERO | __KLIBC_ARG_RESPONSE;
114 l = line + 1;
115 while (fgets(l, (filesize + 1) - (l - (line + 1)), f)) {
119 * if a line ends with a backslash,
120 * concatenate with the next line
139 p = strdup(line);
145 l = line + 1;
148 free(line);
369 /* make a response file to pass a very long command line */