sunfishcode / c-ward

An implementation of libc written in Rust
Other
187 stars 11 forks source link

Implement `fchownat` #113

Closed sunfishcode closed 7 months ago

sunfishcode commented 7 months ago

We should implement the fchownat function, in a new c-scape/src/fs/chown.rs, and remove it from c-scape/src/todo.rs.

Rustix has a chownat function (which is rustix's name for fchownat) so what's needed for c-scape is to adapt that function to the C API.

sunfishcode commented 7 months ago

This is fixed in #115.