Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
0817a05a
Commit
0817a05a
authored
Jun 13, 1994
by
Richard M. Stallman
Browse files
(adjust_lnnoptrs): Handle multiple aux symbols.
parent
2f4b15ef
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/unexaix.c
src/unexaix.c
+2
-1
No files found.
src/unexaix.c
View file @
0817a05a
...
...
@@ -720,6 +720,7 @@ adjust_lnnoptrs (writedesc, readdesc, new_name)
char
*
new_name
;
{
register
int
nsyms
;
register
int
naux
;
register
int
new
;
#ifdef amdahl_uts
SYMENT
symentry
;
...
...
@@ -742,7 +743,7 @@ adjust_lnnoptrs (writedesc, readdesc, new_name)
for
(
nsyms
=
0
;
nsyms
<
f_hdr
.
f_nsyms
;
nsyms
++
)
{
read
(
new
,
&
symentry
,
SYMESZ
);
if
(
symentry
.
n_numaux
)
for
(
naux
=
0
;
naux
<
symentry
.
n_numaux
;
naux
++
)
{
read
(
new
,
&
auxentry
,
AUXESZ
);
nsyms
++
;
...
...
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