* include/wchar.h (fwide): Return success code rather than failure in inline
        definition.
        * mingwex/fwide.c (fwide): ANSI-fy. Get rid of Q8 comments.  Return success
        code rather than failure.
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			115 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			115 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include	<wchar.h>
 | 
						|
#include	<stdio.h>
 | 
						|
 | 
						|
int
 | 
						|
fwide(FILE* stream, int mode)
 | 
						|
{
 | 
						|
  return mode; /* Nothing to do.  */
 | 
						|
}
 | 
						|
 |