hello all,
i have a probleme with <stdlib.h>
void al_exit( int exit_code)
{ al_hardware_reset(exit_code); /* Notify hardware reset that we came from th_exit */ exit(exit_code); }
this function call exit(exit_code) but when i build in the link i have this error "Undefined symbol exit"
it is declared in stdlib.h as an externel fonction!
can someone help me please