static char *savestring PROTO((char *));
static int file_size_and_mode PROTO((int, int *, long int *));
-static void output_dots PROTO((FILE *, int));
\f
/* Read LEN bytes at PTR from descriptor DESC, for file FILENAME,
retrying if necessary. Return a negative value if an error occurs,
}
/* Handle -H option. */
- if (print_include_names) {
- output_dots (stderr, indepth);
- fprintf (stderr, "%s\n", fname);
- }
+ if (print_include_names)
+ fprintf (stderr, "%*s%s\n", indepth, "", fname);
if (angle_brackets)
system_include_depth++;
if (size_pointer) *size_pointer = sbuf.st_size;
return 0;
}
-
-static void
-output_dots (fd, depth)
- FILE* fd;
- int depth;
-{
- while (depth > 0) {
- putc ('.', fd);
- depth--;
- }
-}
-
\f
#ifdef VMS