On 4/6/2014 18:10, Yaron Keren wrote:
> Hello.
>
> As of v3.1.0 _iob* is defined slightly different on the two locations,
> whcar.h:46-61 and stdio.h:82-96.
>
> The two definitions should probably be factored out to an internal shared
> header between the two above or at least be identical.
>
>
Hello.
As of v3.1.0 _iob* is defined slightly different on the two locations,
whcar.h:46-61 and stdio.h:82-96.
The two definitions should probably be factored out to an internal shared
header between the two above or at least be identical.
Thanks, Yaron
2013-12-11 15:02 GMT+02:00 Yaron Kere
Hello,
stdio.h:82-96
#ifndef _STDIO_DEFINED
#ifdef _WIN64
_CRTIMP FILE *__cdecl __iob_func(void);
#define _iob __iob_func()
#else
#ifdef _MSVCRT_
extern FILE _iob[]; /* A pointer to an array of FILE */
#define __iob_func() (_iob)
#else
extern FILE (* __MINGW_IMP_SYMBOL(_iob))[]; /* A pointer t