Fix for bug #1276: Handle SHELL according to POSIX requirements.
[make/kirr.git] / file.c
blobae9974510f6b3920be244a1e9b5262c439798397
1 /* Target file hash table management for GNU Make.
2 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
3 2002 Free Software Foundation, Inc.
4 This file is part of GNU Make.
6 GNU Make is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Make is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Make; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 #include "make.h"
23 #include <assert.h>
25 #include "dep.h"
26 #include "filedef.h"
27 #include "job.h"
28 #include "commands.h"
29 #include "variable.h"
30 #include "debug.h"
31 #include "hash.h"
34 /* Hash table of files the makefile knows how to make. */
36 static unsigned long
37 file_hash_1 (const void *key)
39 return_ISTRING_HASH_1 (((struct file const *) key)->hname);
42 static unsigned long
43 file_hash_2 (const void *key)
45 return_ISTRING_HASH_2 (((struct file const *) key)->hname);
48 static int
49 file_hash_cmp (const void *x, const void *y)
51 return_ISTRING_COMPARE (((struct file const *) x)->hname,
52 ((struct file const *) y)->hname);
55 #ifndef FILE_BUCKETS
56 #define FILE_BUCKETS 1007
57 #endif
58 static struct hash_table files;
60 /* Whether or not .SECONDARY with no prerequisites was given. */
61 static int all_secondary = 0;
63 /* Access the hash table of all file records.
64 lookup_file given a name, return the struct file * for that name,
65 or nil if there is none.
66 enter_file similar, but create one if there is none. */
68 struct file *
69 lookup_file (char *name)
71 register struct file *f;
72 struct file file_key;
73 #if defined(VMS) && !defined(WANT_CASE_SENSITIVE_TARGETS)
74 register char *lname, *ln;
75 #endif
77 assert (*name != '\0');
79 /* This is also done in parse_file_seq, so this is redundant
80 for names read from makefiles. It is here for names passed
81 on the command line. */
82 #ifdef VMS
83 # ifndef WANT_CASE_SENSITIVE_TARGETS
85 register char *n;
86 lname = (char *) malloc (strlen (name) + 1);
87 for (n = name, ln = lname; *n != '\0'; ++n, ++ln)
88 *ln = isupper ((unsigned char)*n) ? tolower ((unsigned char)*n) : *n;
89 *ln = '\0';
90 name = lname;
92 # endif
94 while (name[0] == '[' && name[1] == ']' && name[2] != '\0')
95 name += 2;
96 #endif
97 while (name[0] == '.' && name[1] == '/' && name[2] != '\0')
99 name += 2;
100 while (*name == '/')
101 /* Skip following slashes: ".//foo" is "foo", not "/foo". */
102 ++name;
105 if (*name == '\0')
106 /* It was all slashes after a dot. */
107 #ifdef VMS
108 name = "[]";
109 #else
110 #ifdef _AMIGA
111 name = "";
112 #else
113 name = "./";
114 #endif /* AMIGA */
115 #endif /* VMS */
117 file_key.hname = name;
118 f = (struct file *) hash_find_item (&files, &file_key);
119 #if defined(VMS) && !defined(WANT_CASE_SENSITIVE_TARGETS)
120 free (lname);
121 #endif
122 return f;
125 struct file *
126 enter_file (char *name)
128 register struct file *f;
129 register struct file *new;
130 register struct file **file_slot;
131 struct file file_key;
132 #if defined(VMS) && !defined(WANT_CASE_SENSITIVE_TARGETS)
133 char *lname, *ln;
134 #endif
136 assert (*name != '\0');
138 #if defined(VMS) && !defined(WANT_CASE_SENSITIVE_TARGETS)
140 register char *n;
141 lname = (char *) malloc (strlen (name) + 1);
142 for (n = name, ln = lname; *n != '\0'; ++n, ++ln)
144 if (isupper ((unsigned char)*n))
145 *ln = tolower ((unsigned char)*n);
146 else
147 *ln = *n;
150 *ln = 0;
151 /* Creates a possible leak, old value of name is unreachable, but I
152 currently don't know how to fix it. */
153 name = lname;
155 #endif
157 file_key.hname = name;
158 file_slot = (struct file **) hash_find_slot (&files, &file_key);
159 f = *file_slot;
160 if (! HASH_VACANT (f) && !f->double_colon)
162 #if defined(VMS) && !defined(WANT_CASE_SENSITIVE_TARGETS)
163 free(lname);
164 #endif
165 return f;
168 new = (struct file *) xmalloc (sizeof (struct file));
169 bzero ((char *) new, sizeof (struct file));
170 new->name = new->hname = name;
171 new->update_status = -1;
173 if (HASH_VACANT (f))
174 hash_insert_at (&files, new, file_slot);
175 else
177 /* There is already a double-colon entry for this file. */
178 new->double_colon = f;
179 while (f->prev != 0)
180 f = f->prev;
181 f->prev = new;
184 return new;
187 /* Rename FILE to NAME. This is not as simple as resetting
188 the `name' member, since it must be put in a new hash bucket,
189 and possibly merged with an existing file called NAME. */
191 void
192 rename_file (struct file *from_file, char *to_hname)
194 rehash_file (from_file, to_hname);
195 while (from_file)
197 from_file->name = from_file->hname;
198 from_file = from_file->prev;
202 /* Rehash FILE to NAME. This is not as simple as resetting
203 the `hname' member, since it must be put in a new hash bucket,
204 and possibly merged with an existing file called NAME. */
206 void
207 rehash_file (struct file *from_file, char *to_hname)
209 struct file file_key;
210 struct file **file_slot;
211 struct file *to_file;
212 struct file *deleted_file;
213 struct file *f;
215 file_key.hname = to_hname;
216 if (0 == file_hash_cmp (from_file, &file_key))
217 return;
219 file_key.hname = from_file->hname;
220 while (from_file->renamed != 0)
221 from_file = from_file->renamed;
222 if (file_hash_cmp (from_file, &file_key))
223 /* hname changed unexpectedly */
224 abort ();
226 deleted_file = hash_delete (&files, from_file);
227 if (deleted_file != from_file)
228 /* from_file isn't the one stored in files */
229 abort ();
231 file_key.hname = to_hname;
232 file_slot = (struct file **) hash_find_slot (&files, &file_key);
233 to_file = *file_slot;
235 from_file->hname = to_hname;
236 for (f = from_file->double_colon; f != 0; f = f->prev)
237 f->hname = to_hname;
239 if (HASH_VACANT (to_file))
240 hash_insert_at (&files, from_file, file_slot);
241 else
243 /* TO_FILE already exists under TO_HNAME.
244 We must retain TO_FILE and merge FROM_FILE into it. */
246 if (from_file->cmds != 0)
248 if (to_file->cmds == 0)
249 to_file->cmds = from_file->cmds;
250 else if (from_file->cmds != to_file->cmds)
252 /* We have two sets of commands. We will go with the
253 one given in the rule explicitly mentioning this name,
254 but give a message to let the user know what's going on. */
255 if (to_file->cmds->fileinfo.filenm != 0)
256 error (&from_file->cmds->fileinfo,
257 _("Commands were specified for file `%s' at %s:%lu,"),
258 from_file->name, to_file->cmds->fileinfo.filenm,
259 to_file->cmds->fileinfo.lineno);
260 else
261 error (&from_file->cmds->fileinfo,
262 _("Commands for file `%s' were found by implicit rule search,"),
263 from_file->name);
264 error (&from_file->cmds->fileinfo,
265 _("but `%s' is now considered the same file as `%s'."),
266 from_file->name, to_hname);
267 error (&from_file->cmds->fileinfo,
268 _("Commands for `%s' will be ignored in favor of those for `%s'."),
269 to_hname, from_file->name);
273 /* Merge the dependencies of the two files. */
275 if (to_file->deps == 0)
276 to_file->deps = from_file->deps;
277 else
279 register struct dep *deps = to_file->deps;
280 while (deps->next != 0)
281 deps = deps->next;
282 deps->next = from_file->deps;
285 merge_variable_set_lists (&to_file->variables, from_file->variables);
287 if (to_file->double_colon && from_file->is_target && !from_file->double_colon)
288 fatal (NILF, _("can't rename single-colon `%s' to double-colon `%s'"),
289 from_file->name, to_hname);
290 if (!to_file->double_colon && from_file->double_colon)
292 if (to_file->is_target)
293 fatal (NILF, _("can't rename double-colon `%s' to single-colon `%s'"),
294 from_file->name, to_hname);
295 else
296 to_file->double_colon = from_file->double_colon;
299 if (from_file->last_mtime > to_file->last_mtime)
300 /* %%% Kludge so -W wins on a file that gets vpathized. */
301 to_file->last_mtime = from_file->last_mtime;
303 to_file->mtime_before_update = from_file->mtime_before_update;
305 #define MERGE(field) to_file->field |= from_file->field
306 MERGE (precious);
307 MERGE (tried_implicit);
308 MERGE (updating);
309 MERGE (updated);
310 MERGE (is_target);
311 MERGE (cmd_target);
312 MERGE (phony);
313 MERGE (ignore_vpath);
314 #undef MERGE
316 from_file->renamed = to_file;
320 /* Remove all nonprecious intermediate files.
321 If SIG is nonzero, this was caused by a fatal signal,
322 meaning that a different message will be printed, and
323 the message will go to stderr rather than stdout. */
325 void
326 remove_intermediates (int sig)
328 register struct file **file_slot;
329 register struct file **file_end;
330 int doneany = 0;
332 /* If there's no way we will ever remove anything anyway, punt early. */
333 if (question_flag || touch_flag || all_secondary)
334 return;
336 if (sig && just_print_flag)
337 return;
339 file_slot = (struct file **) files.ht_vec;
340 file_end = file_slot + files.ht_size;
341 for ( ; file_slot < file_end; file_slot++)
342 if (! HASH_VACANT (*file_slot))
344 register struct file *f = *file_slot;
345 /* Is this file eligible for automatic deletion?
346 Yes, IFF: it's marked intermediate, it's not secondary, it wasn't
347 given on the command-line, and it's either a -include makefile or
348 it's not precious. */
349 if (f->intermediate && (f->dontcare || !f->precious)
350 && !f->secondary && !f->cmd_target)
352 int status;
353 if (f->update_status == -1)
354 /* If nothing would have created this file yet,
355 don't print an "rm" command for it. */
356 continue;
357 if (just_print_flag)
358 status = 0;
359 else
361 status = unlink (f->name);
362 if (status < 0 && errno == ENOENT)
363 continue;
365 if (!f->dontcare)
367 if (sig)
368 error (NILF, _("*** Deleting intermediate file `%s'"), f->name);
369 else
371 if (! doneany)
372 DB (DB_BASIC, (_("Removing intermediate files...\n")));
373 if (!silent_flag)
375 if (! doneany)
377 fputs ("rm ", stdout);
378 doneany = 1;
380 else
381 putchar (' ');
382 fputs (f->name, stdout);
383 fflush (stdout);
386 if (status < 0)
387 perror_with_name ("unlink: ", f->name);
392 if (doneany && !sig)
394 putchar ('\n');
395 fflush (stdout);
399 /* Set the intermediate flag. */
401 static void
402 set_intermediate (const void *item)
404 struct file *f = (struct file *) item;
405 f->intermediate = 1;
408 /* For each dependency of each file, make the `struct dep' point
409 at the appropriate `struct file' (which may have to be created).
411 Also mark the files depended on by .PRECIOUS, .PHONY, .SILENT,
412 and various other special targets. */
414 void
415 snap_deps (void)
417 register struct file *f;
418 register struct file *f2;
419 register struct dep *d;
420 register struct file **file_slot_0;
421 register struct file **file_slot;
422 register struct file **file_end;
424 /* Enter each dependency name as a file. */
425 /* We must use hash_dump (), because within this loop
426 we might add new files to the table, possibly causing
427 an in-situ table expansion. */
428 file_slot_0 = (struct file **) hash_dump (&files, 0, 0);
429 file_end = file_slot_0 + files.ht_fill;
430 for (file_slot = file_slot_0; file_slot < file_end; file_slot++)
431 for (f2 = *file_slot; f2 != 0; f2 = f2->prev)
432 for (d = f2->deps; d != 0; d = d->next)
433 if (d->name != 0)
435 d->file = lookup_file (d->name);
436 if (d->file == 0)
437 d->file = enter_file (d->name);
438 else
439 free (d->name);
440 d->name = 0;
442 free (file_slot_0);
444 for (f = lookup_file (".PRECIOUS"); f != 0; f = f->prev)
445 for (d = f->deps; d != 0; d = d->next)
446 for (f2 = d->file; f2 != 0; f2 = f2->prev)
447 f2->precious = 1;
449 for (f = lookup_file (".LOW_RESOLUTION_TIME"); f != 0; f = f->prev)
450 for (d = f->deps; d != 0; d = d->next)
451 for (f2 = d->file; f2 != 0; f2 = f2->prev)
452 f2->low_resolution_time = 1;
454 for (f = lookup_file (".PHONY"); f != 0; f = f->prev)
455 for (d = f->deps; d != 0; d = d->next)
456 for (f2 = d->file; f2 != 0; f2 = f2->prev)
458 /* Mark this file as phony nonexistent target. */
459 f2->phony = 1;
460 f2->is_target = 1;
461 f2->last_mtime = NONEXISTENT_MTIME;
462 f2->mtime_before_update = NONEXISTENT_MTIME;
465 for (f = lookup_file (".INTERMEDIATE"); f != 0; f = f->prev)
467 /* .INTERMEDIATE with deps listed
468 marks those deps as intermediate files. */
469 for (d = f->deps; d != 0; d = d->next)
470 for (f2 = d->file; f2 != 0; f2 = f2->prev)
471 f2->intermediate = 1;
472 /* .INTERMEDIATE with no deps does nothing.
473 Marking all files as intermediates is useless
474 since the goal targets would be deleted after they are built. */
477 for (f = lookup_file (".SECONDARY"); f != 0; f = f->prev)
479 /* .SECONDARY with deps listed
480 marks those deps as intermediate files
481 in that they don't get rebuilt if not actually needed;
482 but unlike real intermediate files,
483 these are not deleted after make finishes. */
484 if (f->deps)
485 for (d = f->deps; d != 0; d = d->next)
486 for (f2 = d->file; f2 != 0; f2 = f2->prev)
487 f2->intermediate = f2->secondary = 1;
488 /* .SECONDARY with no deps listed marks *all* files that way. */
489 else
491 all_secondary = 1;
492 hash_map (&files, set_intermediate);
496 f = lookup_file (".EXPORT_ALL_VARIABLES");
497 if (f != 0 && f->is_target)
498 export_all_variables = 1;
500 f = lookup_file (".IGNORE");
501 if (f != 0 && f->is_target)
503 if (f->deps == 0)
504 ignore_errors_flag = 1;
505 else
506 for (d = f->deps; d != 0; d = d->next)
507 for (f2 = d->file; f2 != 0; f2 = f2->prev)
508 f2->command_flags |= COMMANDS_NOERROR;
511 f = lookup_file (".SILENT");
512 if (f != 0 && f->is_target)
514 if (f->deps == 0)
515 silent_flag = 1;
516 else
517 for (d = f->deps; d != 0; d = d->next)
518 for (f2 = d->file; f2 != 0; f2 = f2->prev)
519 f2->command_flags |= COMMANDS_SILENT;
522 f = lookup_file (".POSIX");
523 if (f != 0 && f->is_target)
524 posix_pedantic = 1;
526 f = lookup_file (".NOTPARALLEL");
527 if (f != 0 && f->is_target)
528 not_parallel = 1;
531 /* Set the `command_state' member of FILE and all its `also_make's. */
533 void
534 set_command_state (struct file *file, enum cmd_state state)
536 struct dep *d;
538 file->command_state = state;
540 for (d = file->also_make; d != 0; d = d->next)
541 d->file->command_state = state;
544 /* Convert an external file timestamp to internal form. */
546 FILE_TIMESTAMP
547 file_timestamp_cons (const char *fname, time_t s, int ns)
549 int offset = ORDINARY_MTIME_MIN + (FILE_TIMESTAMP_HI_RES ? ns : 0);
550 FILE_TIMESTAMP product = (FILE_TIMESTAMP) s << FILE_TIMESTAMP_LO_BITS;
551 FILE_TIMESTAMP ts = product + offset;
553 if (! (s <= FILE_TIMESTAMP_S (ORDINARY_MTIME_MAX)
554 && product <= ts && ts <= ORDINARY_MTIME_MAX))
556 char buf[FILE_TIMESTAMP_PRINT_LEN_BOUND + 1];
557 ts = s <= OLD_MTIME ? ORDINARY_MTIME_MIN : ORDINARY_MTIME_MAX;
558 file_timestamp_sprintf (buf, ts);
559 error (NILF, _("%s: Timestamp out of range; substituting %s"),
560 fname ? fname : _("Current time"), buf);
563 return ts;
566 /* Return the current time as a file timestamp, setting *RESOLUTION to
567 its resolution. */
568 FILE_TIMESTAMP
569 file_timestamp_now (int *resolution)
571 int r;
572 time_t s;
573 int ns;
575 /* Don't bother with high-resolution clocks if file timestamps have
576 only one-second resolution. The code below should work, but it's
577 not worth the hassle of debugging it on hosts where it fails. */
578 #if FILE_TIMESTAMP_HI_RES
579 # if HAVE_CLOCK_GETTIME && defined CLOCK_REALTIME
581 struct timespec timespec;
582 if (clock_gettime (CLOCK_REALTIME, &timespec) == 0)
584 r = 1;
585 s = timespec.tv_sec;
586 ns = timespec.tv_nsec;
587 goto got_time;
590 # endif
591 # if HAVE_GETTIMEOFDAY
593 struct timeval timeval;
594 if (gettimeofday (&timeval, 0) == 0)
596 r = 1000;
597 s = timeval.tv_sec;
598 ns = timeval.tv_usec * 1000;
599 goto got_time;
602 # endif
603 #endif
605 r = 1000000000;
606 s = time ((time_t *) 0);
607 ns = 0;
609 #if FILE_TIMESTAMP_HI_RES
610 got_time:
611 #endif
612 *resolution = r;
613 return file_timestamp_cons (0, s, ns);
616 /* Place into the buffer P a printable representation of the file
617 timestamp TS. */
618 void
619 file_timestamp_sprintf (char *p, FILE_TIMESTAMP ts)
621 time_t t = FILE_TIMESTAMP_S (ts);
622 struct tm *tm = localtime (&t);
624 if (tm)
625 sprintf (p, "%04d-%02d-%02d %02d:%02d:%02d",
626 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
627 tm->tm_hour, tm->tm_min, tm->tm_sec);
628 else if (t < 0)
629 sprintf (p, "%ld", (long) t);
630 else
631 sprintf (p, "%lu", (unsigned long) t);
632 p += strlen (p);
634 /* Append nanoseconds as a fraction, but remove trailing zeros.
635 We don't know the actual timestamp resolution, since clock_getres
636 applies only to local times, whereas this timestamp might come
637 from a remote filesystem. So removing trailing zeros is the
638 best guess that we can do. */
639 sprintf (p, ".%09d", FILE_TIMESTAMP_NS (ts));
640 p += strlen (p) - 1;
641 while (*p == '0')
642 p--;
643 p += *p != '.';
645 *p = '\0';
648 /* Print the data base of files. */
650 static void
651 print_file (const void *item)
653 struct file *f = (struct file *) item;
654 struct dep *d;
655 struct dep *ood = 0;
657 putchar ('\n');
658 if (!f->is_target)
659 puts (_("# Not a target:"));
660 printf ("%s:%s", f->name, f->double_colon ? ":" : "");
662 /* Print all normal dependencies; note any order-only deps. */
663 for (d = f->deps; d != 0; d = d->next)
664 if (! d->ignore_mtime)
665 printf (" %s", dep_name (d));
666 else if (! ood)
667 ood = d;
669 /* Print order-only deps, if we have any. */
670 if (ood)
672 printf (" | %s", dep_name (ood));
673 for (d = ood->next; d != 0; d = d->next)
674 if (d->ignore_mtime)
675 printf (" %s", dep_name (d));
678 putchar ('\n');
680 if (f->precious)
681 puts (_("# Precious file (prerequisite of .PRECIOUS)."));
682 if (f->phony)
683 puts (_("# Phony target (prerequisite of .PHONY)."));
684 if (f->cmd_target)
685 puts (_("# Command-line target."));
686 if (f->dontcare)
687 puts (_("# A default, MAKEFILES, or -include/sinclude makefile."));
688 puts (f->tried_implicit
689 ? _("# Implicit rule search has been done.")
690 : _("# Implicit rule search has not been done."));
691 if (f->stem != 0)
692 printf (_("# Implicit/static pattern stem: `%s'\n"), f->stem);
693 if (f->intermediate)
694 puts (_("# File is an intermediate prerequisite."));
695 if (f->also_make != 0)
697 fputs (_("# Also makes:"), stdout);
698 for (d = f->also_make; d != 0; d = d->next)
699 printf (" %s", dep_name (d));
700 putchar ('\n');
702 if (f->last_mtime == UNKNOWN_MTIME)
703 puts (_("# Modification time never checked."));
704 else if (f->last_mtime == NONEXISTENT_MTIME)
705 puts (_("# File does not exist."));
706 else if (f->last_mtime == OLD_MTIME)
707 puts (_("# File is very old."));
708 else
710 char buf[FILE_TIMESTAMP_PRINT_LEN_BOUND + 1];
711 file_timestamp_sprintf (buf, f->last_mtime);
712 printf (_("# Last modified %s\n"), buf);
714 puts (f->updated
715 ? _("# File has been updated.") : _("# File has not been updated."));
716 switch (f->command_state)
718 case cs_running:
719 puts (_("# Commands currently running (THIS IS A BUG)."));
720 break;
721 case cs_deps_running:
722 puts (_("# Dependencies commands running (THIS IS A BUG)."));
723 break;
724 case cs_not_started:
725 case cs_finished:
726 switch (f->update_status)
728 case -1:
729 break;
730 case 0:
731 puts (_("# Successfully updated."));
732 break;
733 case 1:
734 assert (question_flag);
735 puts (_("# Needs to be updated (-q is set)."));
736 break;
737 case 2:
738 puts (_("# Failed to be updated."));
739 break;
740 default:
741 puts (_("# Invalid value in `update_status' member!"));
742 fflush (stdout);
743 fflush (stderr);
744 abort ();
746 break;
747 default:
748 puts (_("# Invalid value in `command_state' member!"));
749 fflush (stdout);
750 fflush (stderr);
751 abort ();
754 if (f->variables != 0)
755 print_file_variables (f);
757 if (f->cmds != 0)
758 print_commands (f->cmds);
760 if (f->prev)
761 print_file ((const void *) f->prev);
764 void
765 print_file_data_base (void)
767 puts (_("\n# Files"));
769 hash_map (&files, print_file);
771 fputs (_("\n# files hash-table stats:\n# "), stdout);
772 hash_print_stats (&files, stdout);
775 #define EXPANSION_INCREMENT(_l) ((((_l) / 500) + 1) * 500)
777 char *
778 build_target_list (char *value)
780 static unsigned long last_targ_count = 0;
782 if (files.ht_fill != last_targ_count)
784 unsigned long max = EXPANSION_INCREMENT (strlen (value));
785 unsigned long len;
786 char *p;
787 struct file **fp = (struct file **) files.ht_vec;
788 struct file **end = &fp[files.ht_size];
790 /* Make sure we have at least MAX bytes in the allocated buffer. */
791 value = xrealloc (value, max);
793 p = value;
794 len = 0;
795 for (; fp < end; ++fp)
796 if (!HASH_VACANT (*fp) && (*fp)->is_target)
798 struct file *f = *fp;
799 int l = strlen (f->name);
801 len += l + 1;
802 if (len > max)
804 unsigned long off = p - value;
806 max += EXPANSION_INCREMENT (l + 1);
807 value = xrealloc (value, max);
808 p = &value[off];
811 bcopy (f->name, p, l);
812 p += l;
813 *(p++) = ' ';
815 *(p-1) = '\0';
817 last_targ_count = files.ht_fill;
820 return value;
823 void
824 init_hash_files (void)
826 hash_init (&files, 1000, file_hash_1, file_hash_2, file_hash_cmp);
829 /* EOF */