annotate src/lua-test.c @ 5947:09d3533acacf

* src/build-cmake.mk, src/cmake.mk: update v3.21.4
author John Donoghue <john.donoghue@ieee.org>
date Thu, 11 Nov 2021 09:49:11 -0500
parents 89d0ae6cb123
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2351
8a6c466753e2 Improve comment style of all test programs
Volker Grabsch <vog@notjusthosting.com>
parents: 2333
diff changeset
1 /*
8a6c466753e2 Improve comment style of all test programs
Volker Grabsch <vog@notjusthosting.com>
parents: 2333
diff changeset
2 * This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2351
diff changeset
3 * See index.html for further information.
2351
8a6c466753e2 Improve comment style of all test programs
Volker Grabsch <vog@notjusthosting.com>
parents: 2333
diff changeset
4 */
1475
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
5
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
6 #include <stdio.h>
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
7 #include <lua.h>
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
8 #include <lauxlib.h>
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
9
1476
aada6ecef7dd adjusted coding style of the test program of package lua
Volker Grabsch <vog@notjusthosting.com>
parents: 1475
diff changeset
10 int main(int argc, char *argv[])
aada6ecef7dd adjusted coding style of the test program of package lua
Volker Grabsch <vog@notjusthosting.com>
parents: 1475
diff changeset
11 {
aada6ecef7dd adjusted coding style of the test program of package lua
Volker Grabsch <vog@notjusthosting.com>
parents: 1475
diff changeset
12 lua_State *L;
aada6ecef7dd adjusted coding style of the test program of package lua
Volker Grabsch <vog@notjusthosting.com>
parents: 1475
diff changeset
13
1475
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
14 (void)argc;
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
15 (void)argv;
1476
aada6ecef7dd adjusted coding style of the test program of package lua
Volker Grabsch <vog@notjusthosting.com>
parents: 1475
diff changeset
16
2409
89d0ae6cb123 update package lua
beoran <beoran@rubyforge.org>
parents: 2353
diff changeset
17 L = luaL_newstate();
1475
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
18 lua_close(L);
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
19 return 0;
72864135031e add test program for lua
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
20 }