| 929 | }; |
| 930 | #endif |
| 931 | int |
| 932 | sys_chdir(struct thread *td, struct chdir_args *uap) |
| 933 | { |
| 934 | |
| 935 | return (kern_chdir(td, uap->path, UIO_USERSPACE)); |
| 936 | } |
| 937 | |
| 938 | int |
| 939 | kern_chdir(struct thread *td, const char *path, enum uio_seg pathseg) |
nothing calls this directly
no test coverage detected