dbd/postgresql/main.c

changeset 1
408291a6eb3e
child 2
c4f02fc67e5a
equal deleted inserted replaced
0:4ff31a4ea1fb 1:408291a6eb3e
1 #include "dbd_postgresql.h"
2
3 int dbd_postgresql_connection(lua_State *L);
4 int dbd_postgresql_statement(lua_State *L);
5
6 int luaopen_dbdpostgresql(lua_State *L) {
7 dbd_postgresql_connection(L);
8 dbd_postgresql_statement(L);
9
10 return 1;
11 }
12

mercurial