view src/lua-test.c @ 3631:f11ee3f8e632

flac: update version * src/flac.mk: update to 1.3.0 * dist-files.mk: removed flac-1-win32.patch flac-2-lwsock32.patch * src/flac-1-win32.patch: removed * src/flac-2-lwsock32.patch: removed
author John Donoghue <john.donoghue@ieee.org>
date Sun, 29 Jun 2014 15:48:00 -0400
parents 89d0ae6cb123
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <stdio.h>
#include <lua.h>
#include <lauxlib.h>

int main(int argc, char *argv[])
{
    lua_State *L;

    (void)argc;
    (void)argv;

    L = luaL_newstate();
    lua_close(L);
    return 0;
}