Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
ee3c4417
Commit
ee3c4417
authored
3 years ago
by
Andre Maroneze
Committed by
Maxime Jacquemin
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[Libc] fix missing initializer; rename variables
parent
cbc9dd3a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
share/libc/pwd.h
+10
-8
10 additions, 8 deletions
share/libc/pwd.h
with
10 additions
and
8 deletions
share/libc/pwd.h
+
10
−
8
View file @
ee3c4417
...
@@ -44,16 +44,18 @@ struct passwd {
...
@@ -44,16 +44,18 @@ struct passwd {
char
*
pw_shell
;
char
*
pw_shell
;
};
};
__FC_EXTERN
char
__fc_getpwuid_pw_name
[
64
];
__FC_EXTERN
char
__fc_getpw_pw_name
[
64
];
__FC_EXTERN
char
__fc_getpwuid_pw_passwd
[
64
];
__FC_EXTERN
char
__fc_getpw_pw_passwd
[
64
];
__FC_EXTERN
char
__fc_getpwuid_pw_dir
[
64
];
__FC_EXTERN
char
__fc_getpw_pw_gecos
[
64
];
__FC_EXTERN
char
__fc_getpwuid_pw_shell
[
64
];
__FC_EXTERN
char
__fc_getpw_pw_dir
[
64
];
__FC_EXTERN
char
__fc_getpw_pw_shell
[
64
];
struct
passwd
__fc_pwd
=
struct
passwd
__fc_pwd
=
{.
pw_name
=
__fc_getpwuid_pw_name
,
{.
pw_name
=
__fc_getpw_pw_name
,
.
pw_passwd
=
__fc_getpwuid_pw_passwd
,
.
pw_passwd
=
__fc_getpw_pw_passwd
,
.
pw_dir
=
__fc_getpwuid_pw_dir
,
.
pw_gecos
=
__fc_getpw_pw_gecos
,
.
pw_shell
=
__fc_getpwuid_pw_shell
};
.
pw_dir
=
__fc_getpw_pw_dir
,
.
pw_shell
=
__fc_getpw_pw_shell
};
struct
passwd
*
__fc_p_pwd
=
&
__fc_pwd
;
struct
passwd
*
__fc_p_pwd
=
&
__fc_pwd
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment