[libc][unistd.h] define F_OK

This commit is contained in:
Meco Man
2022-12-26 01:41:10 -05:00
committed by Man, Jianting (Meco)
parent 431579a166
commit e97ba95f71
2 changed files with 6 additions and 1 deletions

View File

@@ -86,7 +86,7 @@ static void ulog_file_backend_flush_with_buf(struct ulog_backend *backend)
if (be->cur_log_file_fd < 0)
{
/* check log file directory */
if (access(be->cur_log_dir_path, 0) < 0)
if (access(be->cur_log_dir_path, F_OK) < 0)
{
mkdir(be->cur_log_dir_path, 0);
}