about summary refs log tree commit diff
path: root/bindings/types
diff options
context:
space:
mode:
authorAlexey Yerin <yyp@disroot.org>2024-04-30 22:19:36 +0300
committerAlexey Yerin <yyp@disroot.org>2024-04-30 22:19:36 +0300
commit6ecce1d710f13e1afcf5e854435df01036837043 (patch)
tree40daa4c330f7e98f3eb6b177071684d237c2e282 /bindings/types
parentf08701d84804bd989e114991b006813127ee3586 (diff)
Add missing types
Diffstat (limited to 'bindings/types')
-rw-r--r--bindings/types/libc/types.ha5
1 files changed, 5 insertions, 0 deletions
diff --git a/bindings/types/libc/types.ha b/bindings/types/libc/types.ha
index e6b83b7..94959b7 100644
--- a/bindings/types/libc/types.ha
+++ b/bindings/types/libc/types.ha
@@ -2,6 +2,11 @@ use types::c;
 
 export type time_t = i64;
 
+export type utimbuf = struct {
+	actime: time_t,
+	modtime: time_t,
+};
+
 export type tm = struct {
 	tm_sec: int,
 	tm_min: int,