head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2026.05.07.13.16.15; author wiz; state Exp; branches; next ; commitid 9vzB9PlgXCBlSSEG; desc @@ 1.1 log @rust: update to 1.95.0. As always, provided by he@@ in wip. New major release, details at https://blog.rust-lang.org/2026/04/16/Rust-1.95.0/ @ text @$NetBSD$ Add cpu-specific file for m68k on NetBSD. --- /dev/null 2026-04-16 15:19:59.503167932 +0000 +++ vendor/libc-0.2.180/src/unix/bsd/netbsdlike/netbsd/m68k.rs 2026-04-16 15:19:11.760619011 +0000 @@@@ -0,0 +1,10 @@@@ +use crate::prelude::*; +use crate::PT_FIRSTMACH; + +pub type __cpu_simple_lock_nv_t = u8; + +pub(crate) const _ALIGNBYTES: usize = size_of::() - 1; + +pub const PT_STEP: c_int = PT_FIRSTMACH + 0; +pub const PT_GETREGS: c_int = PT_FIRSTMACH + 1; +pub const PT_SETREGS: c_int = PT_FIRSTMACH + 2; @