Alessandro Bonazzi e075990ed3 Patch level : 12.0 no-patch
Files correlati     :
Commento            :

Aggiunto il preprocessore c++ mcpp per sostituire il compilatore nella compilazione delle maschere.
2020-11-28 16:24:08 +01:00

14 lines
366 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* u_1_7_sjis.c: Invalid multi-byte character sequence (in string literal,
character constant, header-name or comment). */
#define str( a) # a
#pragma setlocale( "japanese") /* For Visual C */
#pragma __setlocale( "sjis") /* For MCPP */
main( void)
{
char * cp = str( "8"); /* 0x9138 */
return 0;
}