master
 1/**
 2 * This file has no copyright assigned and is placed in the Public Domain.
 3 * This file is part of the mingw-w64 runtime package.
 4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
 5 */
 6
 7#define __CRT__NO_INLINE
 8#include	<wchar.h>
 9#include	<stdio.h>
10
11#if 0
12int fwide(FILE *stream,int mode)
13{
14	return -1;			/* limited to byte orientation */
15}
16#endif
17
18int __cdecl fwide(FILE *_F,int _M)
19{
20    (void)_F;
21    return (_M);
22}
23