由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - pedantic warning, 哪里错了
相关主题
Pthread support on Windows XPC++ Template Question
help on pthreads.....recursive template?
一道面试怪题C++. (转载)问个基本 C array 问题
% and gcd for negative numbersWhat is the difference between class and struct?
C puzzle 一日一题forward declaration
这里的牛人很多,都读过标准吗C++ memcpy declaration use restrict keyword?
Any better way to declare a function?请教一个在 AIX 下编译运行的问题
class D:public B;再次请教关于AIX中线程以及优先级的问题
相关话题的讨论汇总
话题: pedantic话题: warning话题: lpthread话题: lrt话题: gcc
进入Programming版参与讨论
1 (共1页)
c*****a
发帖数: 808
1
gcc -Wall -ansi -pedantic -c -o synch.o synch.c -lpthread -lrt
synch.c: In function ‘main’:
synch.c:48:2: warning: ISO C90 forbids mixed declarations and code [-
pedantic]
gcc -o synch synch.o -lpthread -lrt
第48行: pthread_t p, s;
..........盯了半天
t****t
发帖数: 6806
2
常识, C语言规定所有声明都放在block最前面. 你48行前面肯定有非声明出现了.

【在 c*****a 的大作中提到】
: gcc -Wall -ansi -pedantic -c -o synch.o synch.c -lpthread -lrt
: synch.c: In function ‘main’:
: synch.c:48:2: warning: ISO C90 forbids mixed declarations and code [-
: pedantic]
: gcc -o synch synch.o -lpthread -lrt
: 第48行: pthread_t p, s;
: ..........盯了半天

c*****a
发帖数: 808
3
感谢,没注意到.
有个variable在前面assign value了
1 (共1页)
进入Programming版参与讨论
相关主题
再次请教关于AIX中线程以及优先级的问题C puzzle 一日一题
Windows Thread API这里的牛人很多,都读过标准吗
请帮忙看个thread的问题 (with memory dump)Any better way to declare a function?
这是怎么回事?class D:public B;
Pthread support on Windows XPC++ Template Question
help on pthreads.....recursive template?
一道面试怪题C++. (转载)问个基本 C array 问题
% and gcd for negative numbersWhat is the difference between class and struct?
相关话题的讨论汇总
话题: pedantic话题: warning话题: lpthread话题: lrt话题: gcc