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:
@ -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)
|
||||
|
Reference in New Issue
Block a user