(args: MknodArgs<'_>, vm: &VirtualMachine)
| 1102 | #[cfg(not(target_os = "redox"))] |
| 1103 | #[pyfunction] |
| 1104 | fn mknod(args: MknodArgs<'_>, vm: &VirtualMachine) -> PyResult<()> { |
| 1105 | args.mknod(vm) |
| 1106 | } |
| 1107 | |
| 1108 | #[cfg(not(target_os = "redox"))] |
| 1109 | #[pyfunction] |