X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=include%2Fstdio.h;h=afadd9124a847dfdf6b407049c7e0a32d9f389f4;hb=af55070eae5438476f921d827b7ae49e8141c3fe;hp=2932c76f0ee391e1ec8d8d3ae3bc80645d43c669;hpb=061843340fbf2493bb615e20e66f60c5d1ef0455;p=musl diff --git a/include/stdio.h b/include/stdio.h index 2932c76f..afadd912 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -49,6 +49,7 @@ extern "C" { typedef union _G_fpos64_t { char __opaque[16]; + long long __lldata; double __align; } fpos_t; @@ -188,7 +189,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;