clean up c code

Este commit está contenido en:
Chris Cromer 2018-12-21 16:24:02 -03:00
padre 0bb81e5dee
commit 4674135569
Firmado por: cromer
ID de clave GPG: 39CC813FF3C8708A
Se han modificado 2 ficheros con 1 adiciones y 5 borrados

Ver fichero

@ -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',

Ver fichero

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