view src/lua-test.c @ 3577:1ab2022ff6c7

gnuplot: In mingw, install required auxillary files * src/gnuplot.mk: intsall share/gnuplotrc, share/*.gp, term/PostScript/*.ps, term/PostScript/*.txt
author John Donoghue <john.donoghue@ieee.org>
date Wed, 19 Mar 2014 20:54:18 -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;
}