File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ pg_file_write_v1_1(PG_FUNCTION_ARGS)
177
177
*
178
178
* This handles the actual work for pg_file_write.
179
179
*/
180
- int64
180
+ static int64
181
181
pg_file_write_internal (text * file , text * data , bool replace )
182
182
{
183
183
FILE * f ;
@@ -286,7 +286,7 @@ pg_file_rename_v1_1(PG_FUNCTION_ARGS)
286
286
*
287
287
* This handles the actual work for pg_file_rename.
288
288
*/
289
- bool
289
+ static bool
290
290
pg_file_rename_internal (text * file1 , text * file2 , text * file3 )
291
291
{
292
292
char * fn1 ,
@@ -480,7 +480,7 @@ pg_logdir_ls_v1_1(PG_FUNCTION_ARGS)
480
480
return (pg_logdir_ls_internal (fcinfo ));
481
481
}
482
482
483
- Datum
483
+ static Datum
484
484
pg_logdir_ls_internal (FunctionCallInfo fcinfo )
485
485
{
486
486
FuncCallContext * funcctx ;
You can’t perform that action at this time.
0 commit comments