| 3740 | }; |
| 3741 | #endif |
| 3742 | int |
| 3743 | sys_mkdirat(struct thread *td, struct mkdirat_args *uap) |
| 3744 | { |
| 3745 | |
| 3746 | return (kern_mkdirat(td, uap->fd, uap->path, UIO_USERSPACE, uap->mode)); |
| 3747 | } |
| 3748 | |
| 3749 | int |
| 3750 | kern_mkdirat(struct thread *td, int fd, const char *path, enum uio_seg segflg, |
nothing calls this directly
no test coverage detected