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/idfile.c | |
parent | 0b94c83e343bbb3d86fb0fa5225653eca5a6f2a2 (diff) | |
download | idutils-894af8e4502eaeb8d251900c882c85a74fc72f07.tar.gz idutils-894af8e4502eaeb8d251900c882c85a74fc72f07.tar.bz2 idutils-894af8e4502eaeb8d251900c882c85a74fc72f07.zip |
make more functions static
Diffstat (limited to 'libidu/idfile.c')
-rw-r--r-- | libidu/idfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libidu/idfile.c b/libidu/idfile.c index 20b9d55..9f20788 100644 --- a/libidu/idfile.c +++ b/libidu/idfile.c @@ -30,7 +30,7 @@ #include "xalloc.h" #include "xnls.h" -int io_size (FILE *, void *, unsigned int size, int); +static int io_size (FILE *, void *, unsigned int size, int); /****************************************************************************/ @@ -99,7 +99,7 @@ sizeof_idhead () return io_idhead (0, io_size, 0); } -int +static int io_size (FILE *ignore_FILE, void *ignore_addr, unsigned int size, int io_type) { if (io_type == IO_TYPE_STR) |