File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -75,3 +75,5 @@ posix_spawnattr_setsigmask
75
75
posix_spawnp
76
76
recvmsg
77
77
sendmsg
78
+ strftime
79
+ strftime_l
Original file line number Diff line number Diff line change @@ -3130,6 +3130,21 @@ extern "C" {
3130
3130
pub fn arc4random_uniform ( upper_bound : u32 ) -> u32 ;
3131
3131
3132
3132
pub fn secure_getenv ( name : * const c_char ) -> * mut c_char ;
3133
+
3134
+ #[ cfg_attr( target_os = "solaris" , link_name = "__strftime_xpg7" ) ]
3135
+ pub fn strftime (
3136
+ s : * mut c_char ,
3137
+ maxsize : size_t ,
3138
+ format : * const c_char ,
3139
+ timeptr : * const crate :: tm ,
3140
+ ) -> size_t ;
3141
+ pub fn strftime_l (
3142
+ s : * mut c_char ,
3143
+ maxsize : size_t ,
3144
+ format : * const c_char ,
3145
+ timeptr : * const crate :: tm ,
3146
+ loc : crate :: locale_t ,
3147
+ ) -> size_t ;
3133
3148
}
3134
3149
3135
3150
#[ link( name = "sendfile" ) ]
You can’t perform that action at this time.
0 commit comments