authorgravatar for 37453713+ominitay@users.noreply.github.comominitay <37453713+ominitay@users.noreply.github.com> 2022-01-08 21:16:26+00:00
committergravatar for 37453713+ominitay@users.noreply.github.comominitay <37453713+ominitay@users.noreply.github.com> 2022-02-13 20:40:44+00:00
log3dd3c5063b1ab939e41461d0c3a3318708d9f76f
tree828fb9aafbbb847679eff9a9fe5958618639a22b
parentf23005eba7d323d3f26e90972fc042f4d2002df7
signaturelock-open Commit is signed but in an unrecognized format.

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


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/c/haiku.zig+1-1
...@@ -226,7 +226,7 @@ pub const Stat = extern struct {...@@ -226,7 +226,7 @@ pub const Stat = extern struct {
226 pub fn ctime(self: @This()) timespec {226 pub fn ctime(self: @This()) timespec {
227 return self.ctim;227 return self.ctim;
228 }228 }
229 pub fn crtime(self: @This()) timespec {229 pub fn birthtime(self: @This()) timespec {
230 return self.crtim;230 return self.crtim;
231 }231 }
232};232};