1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-02 09:02:37 +03:00

Get rid of some minor compiler warnings.

(HP's cc doesn't like if you forward-declare a routine static,
and then don't make it static in the actual definition...)
This commit is contained in:
Tom Lane
1998-10-26 01:00:13 +00:00
parent 0852fbbb55
commit 3d87216ab9
3 changed files with 12 additions and 11 deletions

View File

@ -6,7 +6,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.62 1998/09/23 04:22:02 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.63 1998/10/26 00:59:21 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -961,7 +961,7 @@ inString(char c, char *s)
* Reads input from fp until an end of line is seen.
*/
void
static void
CopyReadNewline(FILE *fp, int *newline)
{
if (!*newline)