Support nightly 2026-05-24
This commit is contained in:
@@ -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>.
|
||||
|
||||
Reference in New Issue
Block a user