diff options
author | Richard Sandiford <rsandifo@redhat.com> | 2004-07-09 06:28:17 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2004-07-09 06:28:17 +0000 |
commit | 90428457aa46b5072c3f00e22505d881a80e0b47 (patch) | |
tree | 123d0ecbc20dd8f6332bbca73d0e08f080cedbf1 /fastjar | |
parent | 8c5ac2c403729f7a2a463cabf04f46e3f886d604 (diff) | |
download | gcc-90428457aa46b5072c3f00e22505d881a80e0b47.zip gcc-90428457aa46b5072c3f00e22505d881a80e0b47.tar.gz gcc-90428457aa46b5072c3f00e22505d881a80e0b47.tar.bz2 |
* jartool.c (find_entry, looks_like_dir): Remove inline spec.
From-SVN: r84345
Diffstat (limited to 'fastjar')
-rw-r--r-- | fastjar/ChangeLog | 4 | ||||
-rw-r--r-- | fastjar/jartool.c | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/fastjar/ChangeLog b/fastjar/ChangeLog index 87e8d2b..3ab8cb7 100644 --- a/fastjar/ChangeLog +++ b/fastjar/ChangeLog @@ -1,3 +1,7 @@ +2004-07-09 Richard Sandiford <rsandifo@redhat.com> + + * jartool.c (find_entry, looks_like_dir): Remove inline spec. + 2004-07-07 Matthias Klose <doko@debian.org> * Makefile.am (jar_CPPFLAGS): Add AM_CPPFLAGS. diff --git a/fastjar/jartool.c b/fastjar/jartool.c index b4b6674..8d223f6 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; |