Skip to content

Commit 230cfcc

Browse files
committed
ローカル関数をstaticに変更
1 parent 7bb537c commit 230cfcc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

libcob/fileio.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5481,7 +5481,7 @@ cob_acuw_file_delete (unsigned char *file_name, unsigned char *file_type)
54815481
return ret;
54825482
}
54835483

5484-
int
5484+
static int
54855485
cob_listdir_open (cob_field *f_dirname, cob_field *f_pattern)
54865486
{
54875487
//FIXME: now not use file pattern(ex. *).
@@ -5518,7 +5518,7 @@ cob_listdir_open (cob_field *f_dirname, cob_field *f_pattern)
55185518
return listdir_handle;
55195519
}
55205520

5521-
int
5521+
static int
55225522
cob_listdir_next (cob_field *f_handle, cob_field *f_filename)
55235523
{
55245524
//FIXME: now not use handle.
@@ -5550,7 +5550,7 @@ cob_listdir_next (cob_field *f_handle, cob_field *f_filename)
55505550
return 0;
55515551
}
55525552

5553-
int
5553+
static int
55545554
cob_listdir_close (cob_field *f_handle)
55555555
{
55565556
//FIXME: now not use handle.

0 commit comments

Comments
 (0)