// SDL2 example - initialize and quit #include "SDL2/SDL.h" int main(int argc, char** argv){ SDL_Init(SDL_INIT_EVERYTHING); SDL_Quit(); return 0; }