misc/libopenalbridge/tester.c
author koda
Thu, 17 Mar 2011 23:53:33 +0100
changeset 5019 e38d1720a0ff
parent 3697 d5b30d6373fc
permissions -rw-r--r--
allows for building hedgewars with SDL-1.3 also reordered other sdl~version dependent macros into a proper cmake module file

#include <stdio.h>
#include "openalbridge.h"

int main (int argc, int **argv) {

    openal_init();

    openal_close();

    return 0;
}