This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Warning elimination patch in sched.c


 > From: Bjørn Wennberg <Bjorn.Wennberg@lcc.no>
 > 
 > This might be the correct solution to the problem but I'm curios to why
 > the warnings are reported from gcc.
 > If I create a small file containing:
 > -----
 > static int function(int *, int *);
 > int main() {
 >   qsort(0, 0, 0, function);
 > }
 > ------
 > Then I do not get a warning message from gcc. So why do we get a warning
 > message when compiling haifa-sched.c (or sched.c)?
 > bjornw>

	Your program must include stdlib.h to prototype qsort's argument
list, or the -W -Wall flags won't know anything's amiss.
--
Kaveh R. Ghazi			Project Manager / Custom Development
ghazi@caip.rutgers.edu		ICon CMT Corp.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]