adjust fopencookie structure tag for ABI-compat

stdio types use the struct tag names from glibc libio to match C++
ABI.
This commit is contained in:
Rich Felker 2017-12-06 13:14:22 -05:00
parent 061843340f
commit 2488d31f5a
1 changed files with 1 additions and 1 deletions

View File

@ -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_seek_function_t)(void *, off_t *, int);
typedef int (cookie_close_function_t)(void *); typedef int (cookie_close_function_t)(void *);
typedef struct { typedef struct _IO_cookie_io_functions_t {
cookie_read_function_t *read; cookie_read_function_t *read;
cookie_write_function_t *write; cookie_write_function_t *write;
cookie_seek_function_t *seek; cookie_seek_function_t *seek;