- 论坛徽章:
- 0
|
代码如下:
a.c
#include<string.h>;
#include<sys/time.h>;
#define checkflag(flag,msg) if(flag<0) {strcpy(buf_msg,msg); goto l_sqlerror; }
int main(int argc,char** argv)
{
char buf_msg[20];
int abc=-10;
checkflag(abc,"aaaaaaaaaa" ;
printf("the abc is %d\n",abc);
l_sqlerror:
printf("%s\n",buf_msg);
return 0;
}
输出:
aaaaaaaaaa
而在函数里面
..................................
#define checkflag(flag,msg) if(flag<0) {strcpy(s.msg,msg); goto l_sqlerror; }
int f_proc_tel1_hr23()
{
.......................
doFlag=...................................
checkflag(doFlag,"..........................出错" ;
................................
}
makelib时出错???说Syntax error: "name" was expected but ""..........................出错"" was found
而当你定义一个
char msg[20];
................
checkflag(doFlag,msg);
..............
再编译不会报错?为什么?? |
|