diff options
author | Alex Auvolat <alex@adnab.me> | 2016-07-30 20:37:21 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2016-07-30 20:37:21 +0200 |
commit | fa5327d4cc5e47656326b8c0c55d23cd71b04462 (patch) | |
tree | e0b9f5a9bf45bedbf8383b8839c98b04c5e44552 /src/lib/include | |
parent | 6466208ec051e58b824cc3c839b6b086ae910fe6 (diff) | |
download | kogata-fa5327d4cc5e47656326b8c0c55d23cd71b04462.tar.gz kogata-fa5327d4cc5e47656326b8c0c55d23cd71b04462.zip |
Use elf symbol table instead of map file for kernel
Diffstat (limited to 'src/lib/include')
-rw-r--r-- | src/lib/include/stdio.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/include/stdio.h b/src/lib/include/stdio.h index 5bb3b71..9048ecb 100644 --- a/src/lib/include/stdio.h +++ b/src/lib/include/stdio.h @@ -25,7 +25,9 @@ struct file_t { size_t out_buf_size, out_buf_used; bool out_buf_owned; - int ungetc_char; + char *in_buf; + size_t in_buf_size; + size_t in_buf_begin, in_buf_end; }; typedef struct file_t FILE; |