| 1264 | |
| 1265 | #if defined(COMPAT_FREEBSD11) |
| 1266 | int |
| 1267 | freebsd11_mknod(struct thread *td, |
| 1268 | struct freebsd11_mknod_args *uap) |
| 1269 | { |
| 1270 | |
| 1271 | return (kern_mknodat(td, AT_FDCWD, uap->path, UIO_USERSPACE, |
| 1272 | uap->mode, uap->dev)); |
| 1273 | } |
| 1274 | |
| 1275 | int |
| 1276 | freebsd11_mknodat(struct thread *td, |
nothing calls this directly
no test coverage detected