pub const SYS_OPEN: usize = 403; // 403usizeExpand description
Open a file by path.
path_ptr: pointer to the null-terminated path stringpath_len: length of the pathflags: open flags (O_RDONLY,O_WRONLY,O_RDWR,O_CREAT, etc.)
Returns a file descriptor on success.