split out NULL from stddef header

This commit is contained in:
auronandace
2026-06-02 16:56:12 +01:00
parent 7e546be11a
commit 4f5d535ebc
6 changed files with 22 additions and 5 deletions
+5
View File
@@ -0,0 +1,5 @@
use crate::platform::types::c_void;
/// Null pointer constant.
#[expect(clippy::zero_ptr)]
pub const NULL: *mut c_void = 0 as *mut c_void;