1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-21 12:05:57 +03:00

Add missing "static" markers.

Evidently forgotten in commit 11523e860.  Per buildfarm member pademelon.
This commit is contained in:
Tom Lane 2018-04-08 10:54:54 -04:00
parent b47a86f500
commit 2fa55f26a0

View File

@ -177,7 +177,7 @@ pg_file_write_v1_1(PG_FUNCTION_ARGS)
* *
* This handles the actual work for pg_file_write. * This handles the actual work for pg_file_write.
*/ */
int64 static int64
pg_file_write_internal(text *file, text *data, bool replace) pg_file_write_internal(text *file, text *data, bool replace)
{ {
FILE *f; FILE *f;
@ -286,7 +286,7 @@ pg_file_rename_v1_1(PG_FUNCTION_ARGS)
* *
* This handles the actual work for pg_file_rename. * This handles the actual work for pg_file_rename.
*/ */
bool static bool
pg_file_rename_internal(text *file1, text *file2, text *file3) pg_file_rename_internal(text *file1, text *file2, text *file3)
{ {
char *fn1, char *fn1,
@ -480,7 +480,7 @@ pg_logdir_ls_v1_1(PG_FUNCTION_ARGS)
return (pg_logdir_ls_internal(fcinfo)); return (pg_logdir_ls_internal(fcinfo));
} }
Datum static Datum
pg_logdir_ls_internal(FunctionCallInfo fcinfo) pg_logdir_ls_internal(FunctionCallInfo fcinfo)
{ {
FuncCallContext *funcctx; FuncCallContext *funcctx;