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

13 lines
305 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* u_1_7_jis.c: Invalid multi-byte character sequence (in string literal,
character constant, header-name or comment). */
#define str( a) # a
#pragma __setlocale( "jis") /* For MCPP */
main( void)
{
char * cp = str( "$B1 (B"); /* 0x3120 */
return 0;
}