clean up c code

This commit is contained in:
Chris Cromer 2018-12-21 16:24:02 -03:00
parent 0bb81e5dee
commit 4674135569
Signed by: cromer
GPG Key ID: 39CC813FF3C8708A
2 changed files with 1 additions and 5 deletions

View File

@ -5,13 +5,8 @@ project('postgresqldemo',
default_options : [ 'b_ofast=if-release', 'b_march_native=if-release', 'b_ndebug=if-release' ]
)
#gtk_dep = dependency('gtk+-3.0', version : '>=3.0.0')
# gmodule-export-2.0 is needed to connect the handlers
#gmodule_dep = dependency('gmodule-export-2.0', version : '>=2.0')
pg_dep = dependency('libpq', version : '>=8.0')
cc = meson.get_compiler('c')
sources = ['postgresql_demo.c']
exe = executable('postgresql_demo',

View File

@ -1,3 +1,4 @@
#include <stdio.h>
#include <libpq-fe.h>
int main(int argc, char *argv[]) {