diff --git a/Documentation/NuttxUserGuide.html b/Documentation/NuttxUserGuide.html index 5c76737e5a4..918b69d0fa5 100644 --- a/Documentation/NuttxUserGuide.html +++ b/Documentation/NuttxUserGuide.html @@ -202,6 +202,8 @@ paragraphs.
|
@@ -6798,6 +6803,12 @@ FAR char *getcwd(FAR char *buf, size_t size);
int unlink(FAR const char *pathname);
int rmdir(FAR const char *pathname);
+
+#ifdef CONFIG_LIBC_EXECFUNCS
+int execl(FAR const char *path, ...);
+int execv(FAR const char *path, FAR char *const argv[]);
+#endif
+
int getopt(int argc, FAR char *const argv[], FAR const char *optstring);
@@ -8198,7 +8209,9 @@ notify a task when a message is available on a queue.
|
- |