* jartool.c (find_entry, looks_like_dir): Remove inline spec.
authorRichard Sandiford <rsandifo@redhat.com>
Fri, 9 Jul 2004 06:28:17 +0000 (06:28 +0000)
committerRichard Sandiford <rsandifo@gcc.gnu.org>
Fri, 9 Jul 2004 06:28:17 +0000 (06:28 +0000)
From-SVN: r84345

fastjar/ChangeLog
fastjar/jartool.c

index 87e8d2b580c1fb57a0bc6cec723260a6728ca77d..3ab8cb7b2c6c5f2ae4488eb754355231339d4fe4 100644 (file)
@@ -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.
index b4b66744e0ca99cda45293b48b85f0924429abf9..8d223f6cbf0d5233a54f519f9f0ee919a59e56be 100644 (file)
@@ -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;