msc10.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 19 行
C
19 行
/* Zortech is the only compiler that diagnoses these errors */
typedef int S1;
typedef char Q1;
struct S {
Q1 *m1;
S1 *m2;
void m3( Q1 x );
void m4( S1 x );
struct Q {
Q1 *m1;
S1 *m2;
void m3( Q1 x );
void m4( S1 x );
typedef float Q1; /* 'Q1' redefined after use */
};
typedef double S1; /* 'S1' redefined after use */
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?