> I use this headers: > > #include "SDL/SDL.h" The compiler found this header, since it didn't report an error here. This means you probably have SDL installed correctly. > #include <string> This is a C++ header, you're compiling a C program. That's where your errors are coming from. --ryan.