summaryrefslogtreecommitdiff
path: root/src/wchar/fwide.c
blob: 9623d9566fd89f6d9969f613b8d8919886f8c5e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#if 0

#include <wchar.h>
#include <stdio.h>
#include "stdio/_stdio.h"
#include "_safety.h"

int fwide(FILE * stream, int mode)
{
	SIGNAL_SAFE(0);

	ASSERT_NONNULL(stream);

	if (stream->orientation == 0) {
		stream->orientation = mode;
	}
	return stream->orientation;
}

/*
STDC(199409)
*/


#endif