Kernel: Rename FileDescription::fstat() => stat()

This commit is contained in:
Andreas Kling 2020-09-06 18:17:07 +02:00
commit 5444cabd39
Notes: sideshowbarker 2024-07-19 02:53:09 +09:00
3 changed files with 3 additions and 3 deletions

View file

@ -62,7 +62,7 @@ public:
off_t seek(off_t, int whence);
KResultOr<size_t> read(u8*, size_t);
KResultOr<size_t> write(const u8* data, size_t);
KResult fstat(stat&);
KResult stat(::stat&);
KResult chmod(mode_t);