]> git.proxmox.com Git - rustc.git/blob - library/std/src/os/vxworks/raw.rs
New upstream version 1.49.0~beta.4+dfsg1
[rustc.git] / library / std / src / os / vxworks / raw.rs
1 //! VxWorks-specific raw type definitions
2 #![stable(feature = "metadata_ext", since = "1.1.0")]
3
4 use crate::os::raw::c_ulong;
5
6 #[stable(feature = "pthread_t", since = "1.8.0")]
7 pub type pthread_t = c_ulong;
8
9 #[stable(feature = "raw_ext", since = "1.1.0")]
10 pub use libc::{blkcnt_t, blksize_t, dev_t, ino_t, mode_t, nlink_t, off_t, time_t};