diff options
author | Jim Meyering <meyering@redhat.com> | 2008-05-10 23:26:06 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-05-17 12:53:29 +0200 |
commit | 894af8e4502eaeb8d251900c882c85a74fc72f07 (patch) | |
tree | e02a8f5acbb9bfcb630d4bc7441b5627a19771ad /libidu/idwrite.c | |
parent | 0b94c83e343bbb3d86fb0fa5225653eca5a6f2a2 (diff) | |
download | idutils-894af8e4502eaeb8d251900c882c85a74fc72f07.tar.gz idutils-894af8e4502eaeb8d251900c882c85a74fc72f07.tar.bz2 idutils-894af8e4502eaeb8d251900c882c85a74fc72f07.zip |
make more functions static
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; |