misc/libopenalbridge/tester.c
author koda
Wed, 02 May 2012 11:43:43 +0100
changeset 6992 b8f3d8991e92
parent 3697 d5b30d6373fc
permissions -rw-r--r--
marked a couple of functions as inline resolved all warnings/hints/notes added -Ooregvar optimisation (stores frequently used variables in registers, saving ~30k code size)

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

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

    openal_init();

    openal_close();

    return 0;
}