How exactly can you make sure your runtime library is /MT? I'm a little new to the IDE and language. Thanks for the help so far.

-EDIT-I've got this code in my program:
#include <iostream>
#include <string>
#include "DarkGDK.h"
int exit( int& a )
{
if ( a == 1 )
return 0;
}
int shoot ( int& ammo )
{
ammo = ammo - 1;
return ammo;
}
int reload ( int& clips, int& ammo )
{
ammo = 50;clips = clips - 1;
if ( clips == 0 )
{
std::cout << "out of ammo. Type 'exit' to exit.";
}
return 0;
}
void DarkGDK ( void )
{
int a = 0;
int ammo = 50;
int health = 100;
int lives = 5;
int clips = 5;
std::cin >> a;
std::cout << ammo << health << lives << std::endl;
while ( LoopGDK ( ) )
{
if ( dbMouseClick() == 1 )
{
shoot( ammo );
}
if ( ammo <= 0 )
{
reload( clips, ammo );
}
if ( a == 1 )
{
exit ( a );
}
}
return 0;
}
with these errors
error C2668: 'exit' : ambiguous call to overloaded function
error C2562: 'DarkGDK' : 'void' function returning a value
Does this help at all? i'm ignoring atls.lib too.
...