File: tlua.c

package info (click to toggle)
diod 1.0.13-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 29,952 kB
  • sloc: ansic: 31,694; sh: 15,368; makefile: 347; perl: 80
file content (15 lines) | stat: -rw-r--r-- 204 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* tlua.c - is lua configured? */

#if HAVE_CONFIG_H
#include "config.h"
#endif

int
main (int argc, char *argv[])
{
#if defined(HAVE_LUA_H) && defined(HAVE_LUALIB_H)
	return 0;
#else
	return 1;
#endif
}