use cratebackend;
use crateDev;
/// `makedev(maj, min)`—Compute a device ID from a given major and minor ID.
///
/// # References
/// - [Linux]
///
/// [Linux]: https://man7.org/linux/man-pages/man3/makedev.3.html
/// `minor(dev)`—Compute the minor ID of a given device ID.
///
/// # References
/// - [Linux]
///
/// [Linux]: https://man7.org/linux/man-pages/man3/minor.3.html
/// `major(dev)`—Compute the major ID of a given device ID.
///
/// # References
/// - [Linux]
///
/// [Linux]: https://man7.org/linux/man-pages/man3/major.3.html