diff options
| author | Rich Felker <dalias@aerifal.cx> | 2012-06-19 15:18:22 -0400 | 
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2012-06-19 15:18:22 -0400 | 
| commit | 5bc8e845bb4de2c472581136d2268c4bf103bcd4 (patch) | |
| tree | 8bd4f8cea9ce5438f9b3a48614c87f6e6339bc5c | |
| parent | e15171b8d8e80e8b5bcf4e95b1709697858f545a (diff) | |
| download | musl-5bc8e845bb4de2c472581136d2268c4bf103bcd4.tar.gz | |
include declarations for new stdio_ext functions (gnulib support)
| -rw-r--r-- | include/stdio_ext.h | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/include/stdio_ext.h b/include/stdio_ext.h index b090cab6..d979bdcd 100644 --- a/include/stdio_ext.h +++ b/include/stdio_ext.h @@ -20,6 +20,11 @@ size_t __fbufsize(FILE *);  size_t __fpending(FILE *);  int __fpurge(FILE *); +size_t __freadahead(FILE *); +const char *__freadptr(FILE *, size_t *); +void __freadptrinc(FILE *, size_t); +void __fseterr(FILE *); +  #ifdef __cplusplus  }  #endif | 
