rt-thread-official/components/libc/libdl/dlerror.c

19 lines
311 B
C
Raw Normal View History

2013-01-08 22:40:58 +08:00
/*
2018-08-30 20:27:45 +08:00
* Copyright (c) 2006-2018, RT-Thread Development Team
2013-01-08 22:40:58 +08:00
*
2018-08-30 20:27:45 +08:00
* SPDX-License-Identifier: Apache-2.0
*
2013-01-08 22:40:58 +08:00
* Change Logs:
2018-08-30 20:27:45 +08:00
* Date Author Notes
* 2010-11-17 yi.qiu first version
2013-01-08 22:40:58 +08:00
*/
#include <rtthread.h>
#include <rtm.h>
const char *dlerror(void)
{
return "TODO";
}
RTM_EXPORT(dlerror)