diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-09 06:28:17 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-09 06:28:17 +0000 |
commit | 7b00ea2a6fee086d8ad19bf7c0fc02418b25a218 (patch) | |
tree | 123d0ecbc20dd8f6332bbca73d0e08f080cedbf1 /fastjar/jartool.c | |
parent | 7d05473109738c986965c6f6ef6700c0055ff981 (diff) | |
download | gcc-7b00ea2a6fee086d8ad19bf7c0fc02418b25a218.tar.gz |
* jartool.c (find_entry, looks_like_dir): Remove inline spec.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84345 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'fastjar/jartool.c')
-rw-r--r-- | fastjar/jartool.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fastjar/jartool.c b/fastjar/jartool.c index b4b66744e0c..8d223f6cbf0 100644 --- a/fastjar/jartool.c +++ b/fastjar/jartool.c @@ -284,8 +284,8 @@ static void init_args(char **, int); static char *get_next_arg (void); static char *jt_strdup (char*); static void expand_options (int *argcp, char ***argvp); -static inline struct zipentry *find_entry (const char *); -static inline int looks_like_dir (const char *); +static struct zipentry *find_entry (const char *); +static int looks_like_dir (const char *); /* global variables */ ub1 file_header[30]; @@ -731,7 +731,7 @@ void add_entry(struct zipentry *ze){ number_of_entries++; } -static inline struct zipentry * +static struct zipentry * find_entry (const char *fname) { struct zipentry *ze; @@ -745,7 +745,7 @@ find_entry (const char *fname) } -static inline int +static int looks_like_dir (const char *fname) { struct zipentry *ze; |