rt-thread/components/libc/compilers/dlib/syscall_remove.c

25 lines
434 B
C
Raw Normal View History

2015-01-31 11:13:50 +08:00
/*
2018-10-14 19:28:18 +08:00
* Copyright (c) 2006-2018, 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
*/
#include <rtthread.h>
#ifdef RT_USING_DFS
2021-02-15 08:05:49 +08:00
#include <dfs_posix.h>
2015-01-31 11:13:50 +08:00
#endif
#include <yfuns.h>
#pragma module_name = "?remove"
int remove(const char *val)
{
2021-02-15 07:53:58 +08:00
#ifndef RT_USING_DFS
return -1;
#else
2021-02-15 08:03:52 +08:00
return unlink(val);
2015-01-31 11:13:50 +08:00
#endif
}