std.c.haiku: move Stat.crtime to Stat.birthtime

This commit is contained in:
ominitay 2022-01-08 21:16:26 +00:00
parent f23005eba7
commit 3dd3c5063b
No known key found for this signature in database
GPG key ID: DD7CAB34AB04B8E2

View file

@ -226,7 +226,7 @@ pub const Stat = extern struct {
pub fn ctime(self: @This()) timespec {
return self.ctim;
}
pub fn crtime(self: @This()) timespec {
pub fn birthtime(self: @This()) timespec {
return self.crtim;
}
};