| 1067 | }; |
| 1068 | #endif |
| 1069 | int |
| 1070 | sys_open(struct thread *td, struct open_args *uap) |
| 1071 | { |
| 1072 | |
| 1073 | return (kern_openat(td, AT_FDCWD, uap->path, UIO_USERSPACE, |
| 1074 | uap->flags, uap->mode)); |
| 1075 | } |
| 1076 | |
| 1077 | #ifndef _SYS_SYSPROTO_H_ |
| 1078 | struct openat_args { |
nothing calls this directly
no test coverage detected