diff -r 4ff31a4ea1fb -r 408291a6eb3e dbd/postgresql/main.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dbd/postgresql/main.c Sun Nov 23 01:29:09 2008 +0000 @@ -0,0 +1,12 @@ +#include "dbd_postgresql.h" + +int dbd_postgresql_connection(lua_State *L); +int dbd_postgresql_statement(lua_State *L); + +int luaopen_dbdpostgresql(lua_State *L) { + dbd_postgresql_connection(L); + dbd_postgresql_statement(L); + + return 1; +} +