From 95f7a12b8b8a3d57b3474a7879b09ce2b6f671a6 Mon Sep 17 00:00:00 2001 From: auronandace Date: Tue, 16 Dec 2025 16:46:05 +0000 Subject: [PATCH] only import needed types --- src/header/stdio/mod.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/header/stdio/mod.rs b/src/header/stdio/mod.rs index cbcf76c7c3..7e7c37ff90 100644 --- a/src/header/stdio/mod.rs +++ b/src/header/stdio/mod.rs @@ -29,7 +29,10 @@ use crate::{ }, io::{self, BufRead, BufWriter, LineWriter, Read, Write}, out::Out, - platform::{self, ERRNO, Pal, Sys, WriteByte, types::*}, + platform::{ + self, ERRNO, Pal, Sys, WriteByte, + types::{c_char, c_int, c_long, c_uint, c_ulonglong, c_void, off_t, size_t}, + }, sync::Mutex, };