We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 181b043 commit 845d79fCopy full SHA for 845d79f
libc-test/semver/illumos.txt
@@ -26,6 +26,8 @@ pthread_attr_get_np
26
pthread_attr_getstackaddr
27
pthread_attr_setstack
28
ptsname_r
29
+strftime
30
+strftime_l
31
syncfs
32
timerfd_create
33
timerfd_gettime
src/unix/solarish/illumos.rs
@@ -368,4 +368,18 @@ extern "C" {
368
new_value: *const crate::itimerspec,
369
old_value: *mut crate::itimerspec,
370
) -> c_int;
371
+
372
+ pub fn strftime(
373
+ s: *mut c_char,
374
+ maxsize: size_t,
375
+ format: *const c_char,
376
+ timeptr: *const crate::tm,
377
+ ) -> size_t;
378
+ pub fn strftime_l(
379
380
381
382
383
+ loc: crate::locale_t,
384
385
}
0 commit comments