diff options
author | Ron <ron@debian.org> | 2009-06-27 04:44:19 +0930 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-07-05 20:27:16 -0400 |
commit | b9b00cd60abd606fee136efbf6c376aace5f3f2a (patch) | |
tree | d0f16e1b8eb56fc05dc190e4791104caee3104a3 /utils/readsoname2.c | |
parent | 5efcfdc5150304f80b1ffb8b37c67c17e98a0d50 (diff) |
Make more utility functions static
This keeps gcc-4.4 from nagging that they have no prototypes.
Signed-off-by: Ron Lee <ron@debian.org>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'utils/readsoname2.c')
-rw-r--r-- | utils/readsoname2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/readsoname2.c b/utils/readsoname2.c index a74b46aa1..5cda3318d 100644 --- a/utils/readsoname2.c +++ b/utils/readsoname2.c @@ -1,4 +1,4 @@ -char *readsonameXX(char *name, FILE *infile, int expected_type, int *type) +static char *readsonameXX(char *name, FILE *infile, int expected_type, int *type) { ElfW(Ehdr) *epnt; ElfW(Phdr) *ppnt; |