about summary refs log tree commit diff
path: root/bindings/types
diff options
context:
space:
mode:
authorDrew DeVault <drew@ddevault.org>2025-03-21 10:40:06 +0100
committerAlexey Yerin <yyp@disroot.org>2025-03-21 14:40:42 +0300
commit100753a060bebb9ad33a2b56722a4e83faba3fea (patch)
tree236780e4181ccb3e8f5899765101c51c9909d7c3 /bindings/types
parentea84d7a04d5f2eb51c06a5cafbfd877228ab8c4a (diff)
Move bindings from bindings/gi => gi
Signed-off-by: Drew DeVault <drew@ddevault.org>
Diffstat (limited to 'bindings/types')
-rw-r--r--bindings/types/libc/types.ha32
1 files changed, 0 insertions, 32 deletions
diff --git a/bindings/types/libc/types.ha b/bindings/types/libc/types.ha
deleted file mode 100644
index 94959b7..0000000
--- a/bindings/types/libc/types.ha
+++ /dev/null
@@ -1,32 +0,0 @@
-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,
-	tm_hour: int,
-	tm_mday: int,
-	tm_mon: int,
-	tm_year: int,
-	tm_wday: int,
-	tm_yday: int,
-	tm_isdst: int,
-};
-
-export type FILE = opaque;
-
-export type passwd = struct {
-	pw_name: *c::char,
-	pw_passwd: *c::char,
-	pw_uid: uint,
-	pw_gid: uint,
-	pw_gecos: *c::char,
-	pw_dir: *c::char,
-	pw_shell: *c::char,
-};