diff options
author | Carlos Une <brocolis@eml.cc> | 2021-07-11 11:05:15 -0300 |
---|---|---|
committer | Carlos Une <brocolis@eml.cc> | 2021-07-11 11:05:15 -0300 |
commit | 619d619bf5754437401c314521fd48ecd557a5a0 (patch) | |
tree | 2cfc05cab707b2755c44bb996d470d4fa94c748b /src/c.c | |
parent | 52cb72f02e04786015b2adacd8072bcf2f5e89cb (diff) | |
download | fpm-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |