35 lines
745 B
C
Raw Normal View History

2015-01-31 11:13:50 +08:00
/*
2021-03-08 18:19:04 +08:00
* Copyright (c) 2006-2021, RT-Thread Development Team
2015-01-31 11:13:50 +08:00
*
2018-10-14 19:28:18 +08:00
* SPDX-License-Identifier: Apache-2.0
2015-01-31 11:13:50 +08:00
*
* Change Logs:
* Date Author Notes
* 2015-01-28 Bernard first version
*/
2015-01-31 11:13:50 +08:00
#include <rtthread.h>
2021-11-12 16:47:32 -05:00
#include <LowLevelIOInterface.h>
2021-10-26 00:51:32 -04:00
#include <unistd.h>
2021-12-26 09:41:24 -05:00
#include <compiler_private.h>
#define DBG_TAG "dlib.syscall.remove"
#define DBG_LVL DBG_INFO
#include <rtdbg.h>
2015-01-31 11:13:50 +08:00
2021-11-13 10:16:31 -05:00
/*
* The "remove" function should remove the file named "filename". It
* should return 0 on success and nonzero on failure.
*/
2015-01-31 11:13:50 +08:00
#pragma module_name = "?remove"
2021-11-13 10:16:31 -05:00
int remove(const char *filename)
2015-01-31 11:13:50 +08:00
{
2021-11-15 11:22:49 -05:00
#ifdef DFS_USING_POSIX
2021-11-13 10:16:31 -05:00
return unlink(filename);
2021-10-26 00:51:32 -04:00
#else
2021-12-29 07:48:36 -05:00
LOG_W(_WARNING_WITHOUT_FS);
2021-11-13 10:16:31 -05:00
return _LLIO_ERROR;
2021-11-15 11:22:49 -05:00
#endif /* DFS_USING_POSIX */
2015-01-31 11:13:50 +08:00
}