X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FLibraries%2Flibc.so_src%2Fstdio_int.h;h=92c598d40b2566cbb1108d3ff23531360b1061c9;hb=3efa0bc1d46a4bcda04763a89d54a6802e717231;hp=ab5b144d4acf09de883c342080b296e3083acbdb;hpb=a14bbb9609fd00801c65328838a42db75af486ec;p=tpg%2Facess2.git diff --git a/Usermode/Libraries/libc.so_src/stdio_int.h b/Usermode/Libraries/libc.so_src/stdio_int.h index ab5b144d..92c598d4 100644 --- a/Usermode/Libraries/libc.so_src/stdio_int.h +++ b/Usermode/Libraries/libc.so_src/stdio_int.h @@ -39,6 +39,10 @@ struct sFILE { char *Buffer; size_t BufferPos; // First unused byte in the buffer (read/write pos essentially) size_t BufferSpace; // Number of bytes allocated in \a Buffer + + // open_memstream + char **BufPtr; + size_t *LenPtr; }; #endif