From 7398fae8b6f644c0d3c743bd9b36a470fb7f450e Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jeremy@system76.com> Date: Sun, 25 Nov 2018 11:01:19 -0700 Subject: [PATCH] Re-add removed comments --- src/header/stdio/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/header/stdio/mod.rs b/src/header/stdio/mod.rs index 0d4578a8..8af65da0 100644 --- a/src/header/stdio/mod.rs +++ b/src/header/stdio/mod.rs @@ -61,11 +61,13 @@ pub struct FILE { lock: Mutex<()>, file: File, + // pub for stdio_ext pub(crate) flags: c_int, read_buf: Buffer<'static>, read_pos: usize, read_size: usize, unget: Option<u8>, + // pub for stdio_ext pub(crate) writer: LineWriter<File>, // Optional pid for use with popen/pclose -- GitLab