diff options
author | Rich Felker <dalias@aerifal.cx> | 2017-12-06 13:14:22 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2017-12-06 13:14:22 -0500 |
commit | 2488d31f5a946e63e40058baf29fd2991343ea6f (patch) | |
tree | 57ee4b3959c4df9e4ff6ecfebfbcda6313731226 /include | |
parent | 061843340fbf2493bb615e20e66f60c5d1ef0455 (diff) | |
download | musl-2488d31f5a946e63e40058baf29fd2991343ea6f.tar.gz musl-2488d31f5a946e63e40058baf29fd2991343ea6f.tar.bz2 musl-2488d31f5a946e63e40058baf29fd2991343ea6f.tar.xz musl-2488d31f5a946e63e40058baf29fd2991343ea6f.zip |
adjust fopencookie structure tag for ABI-compat
stdio types use the struct tag names from glibc libio to match C++
ABI.
Diffstat (limited to 'include')
-rw-r--r-- | include/stdio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdio.h b/include/stdio.h index 2932c76f..7c4f9ee4 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -188,7 +188,7 @@ typedef ssize_t (cookie_write_function_t)(void *, const char *, size_t); typedef int (cookie_seek_function_t)(void *, off_t *, int); typedef int (cookie_close_function_t)(void *); -typedef struct { +typedef struct _IO_cookie_io_functions_t { cookie_read_function_t *read; cookie_write_function_t *write; cookie_seek_function_t *seek; |