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

23 lines
440 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
*/
#include <rtthread.h>
2021-11-13 05:47:32 +08:00
#include <LowLevelIOInterface.h>
2021-10-26 12:51:32 +08:00
#include <unistd.h>
2015-01-31 11:13:50 +08:00
#pragma module_name = "?remove"
int remove(const char *val)
{
2021-10-26 12:51:32 +08:00
#ifdef RT_USING_POSIX
2021-02-15 08:03:52 +08:00
return unlink(val);
2021-10-26 12:51:32 +08:00
#else
return -1;
#endif /* RT_USING_POSIX */
2015-01-31 11:13:50 +08:00
}