libs/libc/libc.h: Fix a comment typo

This commit is contained in:
YAMAMOTO Takashi 2021-05-24 15:55:02 +09:00 committed by Xiang Xiao
parent f61214cc0d
commit 0a604d7edd

View File

@ -52,11 +52,11 @@
# define CONFIG_LIB_HOMEDIR "/"
#endif
/* The NuttX C library an be build in two modes: (1) as a standard, C-library
* that can be used by normal, user-space applications, or (2) as a special,
* kernel-mode C-library only used within the OS. If NuttX is not being
* built as separated kernel- and user-space modules, then only the first
* mode is supported.
/* The NuttX C library can be built in two modes: (1) as a standard,
* C-library that can be used by normal, user-space applications, or
* (2) as a special, kernel-mode C-library only used within the OS.
* If NuttX is not being built as separated kernel- and user-space modules,
* then only the first mode is supported.
*/
#if !defined(CONFIG_BUILD_FLAT) && defined(__KERNEL__)