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/idread.c | |
parent | 0b94c83e343bbb3d86fb0fa5225653eca5a6f2a2 (diff) | |
download | idutils-894af8e4502eaeb8d251900c882c85a74fc72f07.tar.gz idutils-894af8e4502eaeb8d251900c882c85a74fc72f07.tar.bz2 idutils-894af8e4502eaeb8d251900c882c85a74fc72f07.zip |
make more functions static
Diffstat (limited to 'libidu/idread.c')
-rw-r--r-- | libidu/idread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libidu/idread.c b/libidu/idread.c index c25410f..28f5fda 100644 --- a/libidu/idread.c +++ b/libidu/idread.c @@ -30,7 +30,7 @@ #include "xnls.h" #include "iduglobal.h" -int fgets0 (char *buf0, int size, FILE *in_FILE); +static int fgets0 (char *buf0, int size, FILE *in_FILE); /****************************************************************************/ @@ -145,7 +145,7 @@ read_idhead (struct idhead *idhp) rather than newlines. Also, we return the number of characters read rather than the address of buf0. */ -int +static int fgets0 (char *buf0, int size, FILE * in_FILE) { char *buf; |