comparison test/callback_suite/make-config.lua @ 0:3e629dc19168

initial from svn dyncall-1745
author Daniel Adler
date Thu, 19 Mar 2015 22:24:28 +0100
parents
children 45ac093ca822
comparison
equal deleted inserted replaced
-1:000000000000 0:3e629dc19168
1 require "config"
2
3 local defs = {
4 MAXARGS = maxargs,
5 NSIGS = nsigs,
6 API = api
7 }
8
9 for k,v in pairs(defs) do
10 io.write("#define CONFIG_" .. k .. " " .. v .. "\n" )
11 end
12 io.flush()
13