add Mulan PSL v2 for musl on nuttx

fix compile error
This commit is contained in:
wgz-code 2022-08-04 11:15:01 +08:00
parent 4bee455984
commit bdec0d6e20
892 changed files with 8015 additions and 48 deletions

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file aio.h
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#ifndef __LIBS_LIBC_AIO_AIO_H
#define __LIBS_LIBC_AIO_AIO_H

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file aio_error.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file aio_return.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file aio_suspend.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lio_listio.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_assert.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_stackchk.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_buffer.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_builtin_forindex.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_builtin_getname.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_builtin_isavail.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_builtin_setlist.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -1,3 +1,12 @@
/**
* @file isalnum.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <ctype.h>
int isalnum(int c)

View File

@ -1,3 +1,12 @@
/**
* @file isalpha.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <ctype.h>
#undef isalpha

View File

@ -1,3 +1,12 @@
/**
* @file isascii.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <ctype.h>
#undef isascii

View File

@ -1,3 +1,12 @@
/**
* @file isblank.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <ctype.h>
int isblank(int c)

View File

@ -1,3 +1,12 @@
/**
* @file iscntrl.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <ctype.h>
int iscntrl(int c)

View File

@ -1,3 +1,12 @@
/**
* @file isdigit.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <ctype.h>
#undef isdigit

View File

@ -1,3 +1,12 @@
/**
* @file isgraph.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <ctype.h>
#undef isgraph

View File

@ -1,3 +1,12 @@
/**
* @file islower.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <ctype.h>
#undef islower

View File

@ -1,3 +1,12 @@
/**
* @file isprint.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <ctype.h>
#undef isprint

View File

@ -1,3 +1,12 @@
/**
* @file ispunct.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <ctype.h>
int ispunct(int c)

View File

@ -1,3 +1,12 @@
/**
* @file isspace.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <ctype.h>
#undef isspace

View File

@ -1,3 +1,12 @@
/**
* @file isupper.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <ctype.h>
#undef isupper

View File

@ -1,3 +1,12 @@
/**
* @file isxdigit.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <ctype.h>
int isxdigit(int c)

View File

@ -1,3 +1,12 @@
/**
* @file tolower.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <ctype.h>
int tolower(int c)

View File

@ -1,3 +1,12 @@
/**
* @file toupper.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <ctype.h>
int toupper(int c)

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_alphasort.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_ftw.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_nftw.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_readdirr.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_scandir.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_telldir.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_dlclose.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_dlerror.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_dlopen.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_dlsym.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_dlsymtab.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -1,3 +1,12 @@
/**
* @file swap16.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <stdint.h>
#include <endian.h>

View File

@ -1,3 +1,12 @@
/**
* @file swap32.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <stdint.h>
#include <endian.h>

View File

@ -1,3 +1,12 @@
/**
* @file swap64.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <nuttx/compiler.h>
#include <stdint.h>

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_errno.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_eventfd.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_b16atan2.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_b16cos.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_b16sin.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_fixedmath.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_ubsqrt.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_find_grpfile.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_getgrbuf.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_getgrbufr.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_getgrgid.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_getgrgidr.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_getgrnam.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
* under the License.
*
****************************************************************************/
/**
* @file lib_getgrnamr.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_grp.h
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#ifndef __LIBS_LIBC_GRP_LIB_GRP_H
#define __LIBS_LIBC_GRP_LIB_GRP_H

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_grp_globals.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_initgroups.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_fhex2mem.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_hex2bin.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* References:
* - http://en.wikipedia.org/wiki/Intel_HEX

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_hex2mem.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -1,3 +1,12 @@
/**
* @file imaxabs.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <inttypes.h>
intmax_t imaxabs(intmax_t a)

View File

@ -1,3 +1,12 @@
/**
* @file strtoimax.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <nuttx/config.h>
#include <stdlib.h>

View File

@ -1,3 +1,12 @@
/**
* @file strtoumax.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <stdlib.h>
#include <inttypes.h>

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file libc-musl.h
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#ifndef __LIBS_LIBC_LIBC_H
#define __LIBS_LIBC_LIBC_H

View File

@ -1,3 +1,12 @@
/**
* @file basename.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <string.h>
#include <libgen.h>

View File

@ -1,3 +1,12 @@
/**
* @file dirname.c
* @brief musl source code
* https://github.com/bminor/musl.git
* @version 1.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#include <string.h>
#include <libgen.h>

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_catalog.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_duplocale.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_freelocale.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_gettext.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_langinfo.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_localeconv.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_newlocale.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_setlocale.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file lib_uselocale.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -27,6 +27,15 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
****************************************************************************/
/**
* @file lzf.h
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
#ifndef __LIBS_LIBC_LZF_LZF_H
#define __LIBS_LIBC_LZF_LZF_H

View File

@ -27,6 +27,15 @@
*
****************************************************************************/
/**
* @file lzf_c.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -27,6 +27,15 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
****************************************************************************/
/**
* @file lzf_d.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file arch_atomic.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file aeabi_memclr.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file aeabi_memclr4.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file aeabi_memclr8.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file aeabi_memcpy.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file aeabi_memcpy4.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file aeabi_memcpy8.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file aeabi_memmove.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file aeabi_memmove4.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file aeabi_memmove8.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file aeabi_memset.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file aeabi_memset4.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file aeabi_memset8.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file arch_elf.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file arch_elf.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file arch_elf.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file arch_elf.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file arch_fabsf.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file arch_sqrtf.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -18,6 +18,15 @@
*
****************************************************************************/
/**
* @file arch_elf.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

View File

@ -29,6 +29,15 @@
*
****************************************************************************/
/**
* @file arch_ceil.c
* @brief nuttx source code
* https://github.com/apache/incubator-nuttx.git
* @version 10.3.0
* @author AIIT XUOS Lab
* @date 2022-08-04
*/
/****************************************************************************
* Included Files
****************************************************************************/

Some files were not shown because too many files have changed in this diff Show More