Initialisation de la bibliothèque SDL.

This commit is contained in:
Georges Dupéron 2010-09-26 01:04:31 +02:00
parent e7ef08aff0
commit 96970c31c6

10
main.c
View File

@ -1,5 +1,11 @@
#include <stdio.h>
#include <SDL/SDL.h>
int main() {
printf("hello world\n");
int main(int argc, char** argv) {
SDL_Init(SDL_INIT_VIDEO);
SDL_Quit();
return 0;
}