aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/mingw/misc/fwide.c
blob: a9662f40493590e506399601941a78ac895d6247 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * This file has no copyright assigned and is placed in the Public Domain.
 * This file is part of the mingw-w64 runtime package.
 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
 */

#define __CRT__NO_INLINE
#include	<wchar.h>
#include	<stdio.h>

#if 0
int fwide(FILE *stream,int mode)
{
	return -1;			/* limited to byte orientation */
}
#endif

int __cdecl fwide(FILE *_F,int _M)
{
    (void)_F;
    return (_M);
}