SDL and SDL_ttf library

While trying to use both SDL and SDL_ttf I get the following errors from
VC++ 6.0:

msvcrt.lib(MSVCRT.dll) : error LNK2005: _exit bereits in
LIBC.lib(crt0dat.obj) definiert
msvcrt.lib(MSVCRT.dll) : error LNK2005: _strncpy bereits in
LIBC.lib(strncpy.obj) definiert
msvcrt.lib(MSVCRT.dll) : error LNK2005: __isctype bereits in
LIBC.lib(isctype.obj) definiert
LIBC.lib(crt0init.obj) : warning LNK4098: Standardbibliothek "msvcrt.lib"
steht in Konflikt mit anderen Bibliotheken; /NODEFAULT:Bibliothek verwenden
Release/wcc_tobi_x.exe : fatal error LNK1169: Ein oder mehrere mehrfach
definierte Symbole gefunden
Fehler beim Ausf?hren von link.exe.

one of these libraries (or your project) are built with
a different C runtime library than the others. you want
to make sure these libraries are compiled with the flag
/MD, which specifies the microsoft dll version of the
runtime. if any of them are using a different one, it
can lead to problems (and this warning)

hi

While trying to use both SDL and SDL_ttf I get the following errors from
VC++ 6.0:

Make sure you’re using the latest SDL and SDL_ttf, and then check the FAQ:
http://www.libsdl.org/faq/FAQ-Win32.html#WIN32_3b

See ya,
-Sam Lantinga, Software Engineer, Blizzard Entertainment