Skip to content
Snippets Groups Projects
Commit 1da1ffe0 authored by Mackenzie Clark's avatar Mackenzie Clark
Browse files

make tm struct members public

parent c1ae35da
No related branches found
No related tags found
No related merge requests found
...@@ -73,15 +73,15 @@ s! { ...@@ -73,15 +73,15 @@ s! {
} }
pub struct tm { pub struct tm {
tm_sec: ::c_int, pub tm_sec: ::c_int,
tm_min: ::c_int, pub tm_min: ::c_int,
tm_hour: ::c_int, pub tm_hour: ::c_int,
tm_mday: ::c_int, pub tm_mday: ::c_int,
tm_mon: ::c_int, pub tm_mon: ::c_int,
tm_year: ::c_int, pub tm_year: ::c_int,
tm_wday: ::c_int, pub tm_wday: ::c_int,
tm_yday: ::c_int, pub tm_yday: ::c_int,
tm_isdst: ::c_int, pub tm_isdst: ::c_int,
} }
pub struct timeval { pub struct timeval {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment