aboutsummaryrefslogtreecommitdiffstats
path: root/src/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/io.c')
-rw-r--r--src/io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/io.c b/src/io.c
index 7448227..737be12 100644
--- a/src/io.c
+++ b/src/io.c
@@ -872,7 +872,7 @@ int io_check_dir(const char *dir)
}
}
-unsigned io_file_exist(const char *file)
+unsigned io_file_exists(const char *file)
{
FILE *fd;
@@ -890,7 +890,7 @@ int io_check_file(const char *file)
return -1;
errno = 0;
- if (io_file_exist(file)) {
+ if (io_file_exists(file)) {
return 1;
} else {
FILE *fd;