1 /*
2  * Copyright (c) 2023 Intel Corporation
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <string.h>
8 #include <zephyr/llext/symbol.h>
9 
10 EXPORT_SYMBOL(strcpy);
11 EXPORT_SYMBOL(strncpy);
12 EXPORT_SYMBOL(strlen);
13 EXPORT_SYMBOL(strcmp);
14 EXPORT_SYMBOL(strncmp);
15 EXPORT_SYMBOL(memcmp);
16 EXPORT_SYMBOL(memcpy);
17 EXPORT_SYMBOL(memset);
18 
19 #include <zephyr/syscall_export_llext.c>
20