diff options
Diffstat (limited to 'src/interfaces/libpgtcl/pgtcl.c')
-rw-r--r-- | src/interfaces/libpgtcl/pgtcl.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/interfaces/libpgtcl/pgtcl.c b/src/interfaces/libpgtcl/pgtcl.c index ad9b68b41d0..2cbec47395d 100644 --- a/src/interfaces/libpgtcl/pgtcl.c +++ b/src/interfaces/libpgtcl/pgtcl.c @@ -9,14 +9,18 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtcl.c,v 1.4 1996/11/09 10:39:40 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtcl.c,v 1.5 1996/11/11 12:14:38 scrappy Exp $ * *------------------------------------------------------------------------- */ +#include <stdlib.h> + +#include "postgres.h" #include "tcl.h" #include "libpgtcl.h" #include "pgtclCmds.h" +#include "pgtclId.h" /* * Pgtcl_Init @@ -27,7 +31,7 @@ /* * Tidy up forgotten postgres connection at Tcl_Exit */ -void +static void Pgtcl_AtExit (ClientData cData) { Pg_clientData *cd = (Pg_clientData *)cData; @@ -52,7 +56,7 @@ Pgtcl_AtExit (ClientData cData) /* * Tidy up forgotten postgres connections on Interpreter deletion */ -void +static void Pgtcl_Shutdown (ClientData cData, Tcl_Interp *interp) { Pgtcl_AtExit(cData); |