diff options
Diffstat (limited to 'libidu/idwrite.c')
-rw-r--r-- | libidu/idwrite.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libidu/idwrite.c b/libidu/idwrite.c index cffeded..00fc205 100644 --- a/libidu/idwrite.c +++ b/libidu/idwrite.c @@ -1,5 +1,5 @@ /* idwrite.c -- functions to write ID database files - Copyright (C) 1995, 1996, 2007 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 2007, 2008 Free Software Foundation, Inc. Written by Greg McGary <gkm@gnu.ai.mit.edu> This program is free software; you can redistribute it and/or modify @@ -26,7 +26,7 @@ #include "hash.h" #include "xnls.h" -int file_link_qsort_compare (void const *x, void const *y); +static int file_link_qsort_compare (void const *x, void const *y); /****************************************************************************/ @@ -85,7 +85,7 @@ serialize_file_links (struct idhead *idhp) - Among used: breadth-first (dirs before files, parent dirs before children) - Among files: collate by mf_index. */ -int +static int file_link_qsort_compare (void const *x, void const *y) { struct file_link const *flx = *(struct file_link const *const *) x; |