12 lines
134 B
C
12 lines
134 B
C
#include <stdio.h>
|
|
#include <SDL/SDL.h>
|
|
|
|
int main(int argc, char** argv) {
|
|
SDL_Init(SDL_INIT_VIDEO);
|
|
|
|
|
|
|
|
SDL_Quit();
|
|
return 0;
|
|
}
|