Support nightly 2026-05-24

This commit is contained in:
Jeremy Soller
2026-05-25 17:03:17 -06:00
parent 7b3371848c
commit ffa097ccb3
15 changed files with 90 additions and 109 deletions
+2 -2
View File
@@ -135,8 +135,8 @@ pub unsafe extern "C" fn vsyslog(priority: c_int, message: *const c_char, ap: Va
/// See <https://pubs.opengroup.org/onlinepubs/9799919799/functions/closelog.html>.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn syslog(priority: c_int, message: *const c_char, mut __valist: ...) {
unsafe { vsyslog(priority, message, __valist.as_va_list()) };
pub unsafe extern "C" fn syslog(priority: c_int, message: *const c_char, __valist: ...) {
unsafe { vsyslog(priority, message, __valist) };
}
/// See <https://pubs.opengroup.org/onlinepubs/9799919799/functions/closelog.html>.