diff options
Diffstat (limited to 'vendor/libc/src/unix/bsd/apple/long_array.rs')
-rw-r--r-- | vendor/libc/src/unix/bsd/apple/long_array.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/vendor/libc/src/unix/bsd/apple/long_array.rs b/vendor/libc/src/unix/bsd/apple/long_array.rs new file mode 100644 index 0000000..4c56a27 --- /dev/null +++ b/vendor/libc/src/unix/bsd/apple/long_array.rs @@ -0,0 +1,8 @@ +s! { + pub struct ctl_info { + pub ctl_id: u32, + pub ctl_name: [::c_char; MAX_KCTL_NAME], + } +} + +pub const MAX_KCTL_NAME: usize = 96; |