aboutsummaryrefslogtreecommitdiff
path: root/src/c.c
diff options
context:
space:
mode:
authorCarlos Une <brocolis@eml.cc>2021-07-11 11:05:15 -0300
committerCarlos Une <brocolis@eml.cc>2021-07-11 11:05:15 -0300
commit619d619bf5754437401c314521fd48ecd557a5a0 (patch)
tree2cfc05cab707b2755c44bb996d470d4fa94c748b /src/c.c
parent52cb72f02e04786015b2adacd8072bcf2f5e89cb (diff)
downloadfpm-619d619bf5754437401c314521fd48ecd557a5a0.tar.gz
fpm-619d619bf5754437401c314521fd48ecd557a5a0.zip
Rename C function is_dir to c_is_dir
Diffstat (limited to 'src/c.c')
-rw-r--r--src/c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c.c b/src/c.c
index c54469a..d9048a9 100644
--- a/src/c.c
+++ b/src/c.c
@@ -1,7 +1,7 @@
#include <sys/stat.h>
#include <dirent.h>
-int is_dir(const char *path)
+int c_is_dir(const char *path)
{
struct stat m;
int r = stat(path, &m);