Project

General

Profile

Bug #1448

Updated by Dmitry M. over 7 years ago

crystax/sys/stdlib.h header has 

 
 ~~~ c 
 int    rand(); 
 ~~~ 

 
 instead of 

 
 ~~~ c 
 int    rand(void); 
 ~~~ 

 
 that results in that rand function can be redefined with any other arguments list. Finally this leads to a failed configuration of libcurl ("compiler does not halt on function prototype mismatch."), as it uses rand function for a check.

Back