about summary refs log tree commit diff
path: root/bindings/types
diff options
context:
space:
mode:
authorAlexey Yerin <yyp@disroot.org>2023-10-04 20:59:45 +0300
committerAlexey Yerin <yyp@disroot.org>2023-10-04 20:59:45 +0300
commit07cff557463d13bbd1baa970f609c8dbb13e16a8 (patch)
tree5ed04987ffde8fd18f7e58886cdb3e7e57465609 /bindings/types
parenta3f09a04518ce9ed7cb93719149f75c36ad02856 (diff)
Update for opaque and other Hare changes
Diffstat (limited to 'bindings/types')
-rw-r--r--bindings/types/libc/types.ha2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/types/libc/types.ha b/bindings/types/libc/types.ha
index bfb0dc0..e6b83b7 100644
--- a/bindings/types/libc/types.ha
+++ b/bindings/types/libc/types.ha
@@ -14,7 +14,7 @@ export type tm = struct {
 	tm_isdst: int,
 };
 
-export type FILE = void;
+export type FILE = opaque;
 
 export type passwd = struct {
 	pw_name: *c::char,