Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
90428457
Commit
90428457
authored
Jul 09, 2004
by
Richard Sandiford
Committed by
Richard Sandiford
Jul 09, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* jartool.c (find_entry, looks_like_dir): Remove inline spec.
From-SVN: r84345
parent
8c5ac2c4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
fastjar/ChangeLog
+4
-0
fastjar/jartool.c
+4
-4
No files found.
fastjar/ChangeLog
View file @
90428457
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.
...
...
fastjar/jartool.c
View file @
90428457
...
...
@@ -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
in
line
in
t
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
in
line
in
t
static
int
looks_like_dir
(
const
char
*
fname
)
{
struct
zipentry
*
ze
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment