26 lines
600 B
C
Raw Normal View History

2024-08-05 20:57:09 +08:00
/*
2025-01-18 13:25:25 +08:00
* Copyright (c) 2006-2024 RT-Thread Development Team
2024-08-05 20:57:09 +08:00
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2010-11-17 yi.qiu first version
*/
#include <rtthread.h>
#include <rtm.h>
2025-01-18 13:25:25 +08:00
/**
* @brief retrieve a string describing the last error that occurred from a dynamic linking operation.
*
* @return const char* a string containing an error message describing the last error.
*
* @note This function is an API of POSIX standard, which is still remaining TBD.
*/
2024-08-05 20:57:09 +08:00
const char *dlerror(void)
{
return "TODO";
}
RTM_EXPORT(dlerror)