Lines Matching refs:command
247 char line[BUFSIZ], *command; in get_null_defines() local
262 command = malloc (sizeof fmt + sizeof "/dev/null" + 2 * strlen (CC) in get_null_defines()
265 if (command == NULL) in get_null_defines()
271 sprintf (command, fmt, "/dev/null", CC, INC, CC, macrofile); in get_null_defines()
273 if (system (command)) in get_null_defines()
276 free (command); in get_null_defines()
279 free (command); in get_null_defines()
349 char line[BUFSIZ], *command; in check_header() local
353 command = malloc (sizeof fmt + strlen (file_name) + 2 * strlen (CC) in check_header()
356 if (command == NULL) in check_header()
363 sprintf (command, fmt, file_name, CC, INC, CC, macrofile); in check_header()
365 if (system (command)) in check_header()
370 free (command); in check_header()