Commit 3dd3c5063b

ominitay <37453713+ominitay@users.noreply.github.com>
2022-01-08 22:16:26
std.c.haiku: move Stat.crtime to Stat.birthtime
1 parent f23005e
Changed files (1)
lib
std
lib/std/c/haiku.zig
@@ -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;
     }
 };