SilverScreen Solid Modeler

exit

exit

Previous topic Next topic  

exit

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

void exit( int val )

 

int val;       /* exit value */

 

 

 




Synopsis

#include "stdlib.h"

 

The exit function terminates the currently running SilverC program.

 

 

Parameters

val is any integral value.

 

 

Return Value

none; exit does not return to the caller.

 

 

Comments

SilverScreen does not make any use of the exit value, val . Also, there is no automatic freeing of allocated memory on exit of a SilverC program.

 

 

See Also

abort