|
7 | 7 | * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group |
8 | 8 | * Portions Copyright (c) 1994, Regents of the University of California |
9 | 9 | * |
10 | | - * $PostgreSQL: pgsql/src/interfaces/libpq/libpq-fe.h,v 1.105 2004/08/11 18:06:01 tgl Exp $ |
| 10 | + * $PostgreSQL: pgsql/src/interfaces/libpq/libpq-fe.h,v 1.106 2004/08/18 19:27:13 tgl Exp $ |
11 | 11 | * |
12 | 12 | *------------------------------------------------------------------------- |
13 | 13 | */ |
@@ -286,8 +286,7 @@ typedef void (pgthreadlock_t)(int acquire); |
286 | 286 |
|
287 | 287 | extern pgthreadlock_t * PQregisterThreadLock(pgthreadlock_t *newhandler); |
288 | 288 |
|
289 | | -void |
290 | | -PQinitSSL(int do_init); |
| 289 | +extern void PQinitSSL(int do_init); |
291 | 290 |
|
292 | 291 | /* === in fe-exec.c === */ |
293 | 292 |
|
@@ -418,24 +417,21 @@ extern unsigned char *PQunescapeBytea(const unsigned char *strtext, |
418 | 417 |
|
419 | 418 | /* === in fe-print.c === */ |
420 | 419 |
|
421 | | -extern void |
422 | | -PQprint(FILE *fout, /* output stream */ |
423 | | - const PGresult *res, |
424 | | - const PQprintOpt *ps); /* option structure */ |
| 420 | +extern void PQprint(FILE *fout, /* output stream */ |
| 421 | + const PGresult *res, |
| 422 | + const PQprintOpt *ps); /* option structure */ |
425 | 423 |
|
426 | 424 | /* |
427 | 425 | * really old printing routines |
428 | 426 | */ |
429 | | -extern void |
430 | | -PQdisplayTuples(const PGresult *res, |
| 427 | +extern void PQdisplayTuples(const PGresult *res, |
431 | 428 | FILE *fp, /* where to send the output */ |
432 | 429 | int fillAlign, /* pad the fields with spaces */ |
433 | 430 | const char *fieldSep, /* field separator */ |
434 | 431 | int printHeader, /* display headers? */ |
435 | 432 | int quiet); |
436 | 433 |
|
437 | | -extern void |
438 | | -PQprintTuples(const PGresult *res, |
| 434 | +extern void PQprintTuples(const PGresult *res, |
439 | 435 | FILE *fout, /* output stream */ |
440 | 436 | int printAttName, /* print attribute names */ |
441 | 437 | int terseOutput, /* delimiter bars */ |
@@ -474,7 +470,7 @@ extern int PQenv2encoding(void); |
474 | 470 | * Indicates whether the libpq thread is in send(). |
475 | 471 | * Used to ignore SIGPIPE if thread is in send(). |
476 | 472 | */ |
477 | | -pqbool PQinSend(void); |
| 473 | +extern pqbool PQinSend(void); |
478 | 474 |
|
479 | 475 | #ifdef __cplusplus |
480 | 476 | } |
|
0 commit comments