rt-thread-official/components/libc/posix/libdl/dlsyms.c

54 lines
906 B
C
Raw Normal View History

2018-10-14 19:28:18 +08:00
/*
2021-03-08 18:19:04 +08:00
* Copyright (c) 2006-2021, RT-Thread Development Team
2018-10-14 19:28:18 +08:00
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2017/10/15 bernard the first version
2018-10-14 19:28:18 +08:00
*/
#include <rtthread.h>
2015-10-11 15:37:34 +08:00
#include <rtm.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
2015-10-11 15:37:34 +08:00
RTM_EXPORT(strcpy);
RTM_EXPORT(strncpy);
RTM_EXPORT(strlen);
2015-10-11 15:37:34 +08:00
RTM_EXPORT(strcat);
RTM_EXPORT(strstr);
RTM_EXPORT(strchr);
RTM_EXPORT(strcmp);
2015-10-11 15:37:34 +08:00
RTM_EXPORT(strtol);
RTM_EXPORT(strtoul);
RTM_EXPORT(strncmp);
2015-10-11 15:37:34 +08:00
RTM_EXPORT(memcpy);
RTM_EXPORT(memcmp);
RTM_EXPORT(memmove);
RTM_EXPORT(memset);
RTM_EXPORT(memchr);
RTM_EXPORT(putchar);
2015-10-11 15:37:34 +08:00
RTM_EXPORT(puts);
RTM_EXPORT(printf);
RTM_EXPORT(sprintf);
RTM_EXPORT(snprintf);
RTM_EXPORT(fwrite);
#include <setjmp.h>
RTM_EXPORT(longjmp);
RTM_EXPORT(setjmp);
RTM_EXPORT(exit);
RTM_EXPORT(abort);
RTM_EXPORT(rand);
#include <assert.h>
RTM_EXPORT(__assert_func);