| 3800 | }; |
| 3801 | #endif |
| 3802 | int |
| 3803 | sys_rmdir(struct thread *td, struct rmdir_args *uap) |
| 3804 | { |
| 3805 | |
| 3806 | return (kern_frmdirat(td, AT_FDCWD, uap->path, FD_NONE, UIO_USERSPACE, |
| 3807 | 0)); |
| 3808 | } |
| 3809 | |
| 3810 | int |
| 3811 | kern_frmdirat(struct thread *td, int dfd, const char *path, int fd, |
nothing calls this directly
no test coverage detected