Skip to content

Commit b480d23

Browse files
Reorder struct lconv members to match locale.h (#6073)
`struct lconv` in locale.h https://codebrowser.dev/glibc/glibc/locale/locale.h.html#lconv::int_p_cs_precedes. Order of relevant section in glibc locale.h ```C char int_p_cs_precedes; char int_p_sep_by_space; char int_n_cs_precedes; char int_n_sep_by_space; ```
1 parent 91979a3 commit b480d23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/src/locale.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ struct lconv {
2424
p_sign_posn: libc::c_char,
2525
n_sign_posn: libc::c_char,
2626
int_p_cs_precedes: libc::c_char,
27-
int_n_cs_precedes: libc::c_char,
2827
int_p_sep_by_space: libc::c_char,
28+
int_n_cs_precedes: libc::c_char,
2929
int_n_sep_by_space: libc::c_char,
3030
int_p_sign_posn: libc::c_char,
3131
int_n_sign_posn: libc::c_char,

0 commit comments

Comments
 (0)