| 1255 | }; |
| 1256 | #endif |
| 1257 | int |
| 1258 | sys_mknodat(struct thread *td, struct mknodat_args *uap) |
| 1259 | { |
| 1260 | |
| 1261 | return (kern_mknodat(td, uap->fd, uap->path, UIO_USERSPACE, uap->mode, |
| 1262 | uap->dev)); |
| 1263 | } |
| 1264 | |
| 1265 | #if defined(COMPAT_FREEBSD11) |
| 1266 | int |
nothing calls this directly
no test coverage detected