File tree 2 files changed +17
-0
lines changed
2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -78,3 +78,5 @@ posix_spawnattr_setsigmask
78
78
posix_spawnp
79
79
recvmsg
80
80
sendmsg
81
+ strftime
82
+ strftime_l
Original file line number Diff line number Diff line change @@ -3202,6 +3202,21 @@ extern "C" {
3202
3202
pub fn arc4random_uniform ( upper_bound : u32 ) -> u32 ;
3203
3203
3204
3204
pub fn secure_getenv ( name : * const c_char ) -> * mut c_char ;
3205
+
3206
+ #[ cfg_attr( target_os = "solaris" , link( name = "__strftime_xpg7" ) ) ]
3207
+ pub fn strftime (
3208
+ s : * mut c_char ,
3209
+ maxsize : size_t ,
3210
+ format : * const c_char ,
3211
+ timeptr : * const crate :: tm ,
3212
+ ) -> size_t ;
3213
+ pub fn strftime_l (
3214
+ s : * mut c_char ,
3215
+ maxsize : size_t ,
3216
+ format : * const c_char ,
3217
+ timeptr : * const crate :: tm ,
3218
+ loc : crate :: locale_t ,
3219
+ ) -> size_t ;
3205
3220
}
3206
3221
3207
3222
#[ link( name = "sendfile" ) ]
You can’t perform that action at this time.
0 commit comments