diag0219.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 37 行
C
37 行
int uu;
static char *f();
char *f() { // internal
uu=__LINE__;
return 0;
}
char *g();
static char *g() { // error
uu=__LINE__;
return 0;
}
void h();
inline void h() { // external
uu=__LINE__;
}
inline void l();
void l() { // internal
uu=__LINE__;
}
inline void m();
extern void m() { // internal
uu=__LINE__;
}
static void n();
inline void n() { // internal
uu=__LINE__;
}
static int a;
int a; // two defn's
static int b;
extern int b; // static
int c;
static int c; // error
extern int d;
static int d; // error
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?