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 @@ -78,3 +78,5 @@ posix_spawnattr_setsigmask
7878posix_spawnp
7979recvmsg
8080sendmsg
81+ strftime
82+ strftime_l
Original file line number Diff line number Diff line change @@ -3202,6 +3202,21 @@ extern "C" {
32023202 pub fn arc4random_uniform ( upper_bound : u32 ) -> u32 ;
32033203
32043204 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 ;
32053220}
32063221
32073222#[ link( name = "sendfile" ) ]
You can’t perform that action at this time.
0 commit comments