Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 3257b0e

Browse files
committed
egcs thinks omitting the return type in a function declaration
is poor coding style. I agree.
1 parent d4d297a commit 3257b0e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/interfaces/libpgtcl/pgtclId.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
* Copyright (c) 1994, Regents of the University of California
1111
*
12-
* $Id: pgtclId.h,v 1.12 1999/05/25 22:43:47 momjian Exp $
12+
* $Id: pgtclId.h,v 1.13 1999/05/30 15:22:34 tgl Exp $
1313
*
1414
*-------------------------------------------------------------------------
1515
*/
@@ -35,9 +35,9 @@ extern void PgSetConnectionId(Tcl_Interp *interp, PGconn *conn);
3535

3636
extern PGconn *PgGetConnectionId(Tcl_Interp *interp, char *id,
3737
Pg_ConnectionId **);
38-
extern PgDelConnectionId(DRIVER_DEL_PROTO);
38+
extern int PgDelConnectionId(DRIVER_DEL_PROTO);
3939
extern int PgOutputProc(DRIVER_OUTPUT_PROTO);
40-
extern PgInputProc(DRIVER_INPUT_PROTO);
40+
extern int PgInputProc(DRIVER_INPUT_PROTO);
4141
extern int PgSetResultId(Tcl_Interp *interp, char *connid, PGresult *res);
4242
extern PGresult *PgGetResultId(Tcl_Interp *interp, char *id);
4343
extern void PgDelResultId(Tcl_Interp *interp, char *id);

0 commit comments

Comments
 (0)