1 /*
2  * Copyright (c) 2006-2024 RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author      Notes
8  * 2010-11-17     yi.qiu      first version
9  */
10 
11 #include <rtthread.h>
12 #include <rtm.h>
13 
14 /**
15  * @brief  retrieve a string describing the last error that occurred from a dynamic linking operation.
16  *
17  * @return const char* a string containing an error message describing the last error.
18  *
19  * @note   This function is an API of POSIX standard, which is still remaining TBD.
20  */
dlerror(void)21 const char *dlerror(void)
22 {
23     return "TODO";
24 }
25 RTM_EXPORT(dlerror)
26