You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
279 B
C

#define _GNU_SOURCE
#include "moon_dlfix.h"
/* declaration of lua_State as an opaque type */
struct lua_State;
typedef struct lua_State lua_State;
#ifndef EXPORT
#define EXPORT extern
#endif
EXPORT int luaopen_sofix( lua_State* L ) {
(void)L;
MOON_DLFIX();
return 0;
}