diff options
Diffstat (limited to 'filenames.c')
-rw-r--r-- | filenames.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/filenames.c b/filenames.c index 9ccd4ad..9a766ac 100644 --- a/filenames.c +++ b/filenames.c @@ -565,21 +565,11 @@ unsymlink (char *n) return n; } -long input_chars = 0; - FILE * open_source_FILE (char *file_name, char const *filter) { - struct stat stat_buf; FILE *source_FILE; - if (stat (file_name, &stat_buf) < 0) - { - filerr ("open", file_name); - return NULL; - } - input_chars += stat_buf.st_size; - if (filter) { char command[1024]; |