| 3725 | }; |
| 3726 | #endif |
| 3727 | int |
| 3728 | sys_mkdir(struct thread *td, struct mkdir_args *uap) |
| 3729 | { |
| 3730 | |
| 3731 | return (kern_mkdirat(td, AT_FDCWD, uap->path, UIO_USERSPACE, |
| 3732 | uap->mode)); |
| 3733 | } |
| 3734 | |
| 3735 | #ifndef _SYS_SYSPROTO_H_ |
| 3736 | struct mkdirat_args { |
nothing calls this directly
no test coverage detected