[cross-posting removed] On Tue, 05 Oct 2010, Lourival Vieira Neto wrote: > We've created the support for scripting the NetBSD kernel with Lua,
Instead of using "long long" as the C data type for Lua variables, I suggest using int64_t (which is the same size on all existing and future platforms), or intmax_t (which is the largest available type on any particular platform). "long long" has neither of these attributes. --apb (Alan Barrett)