diff --git a/Documentation/NuttxUserGuide.html b/Documentation/NuttxUserGuide.html index 09bad280c8..18a33b93a8 100644 --- a/Documentation/NuttxUserGuide.html +++ b/Documentation/NuttxUserGuide.html @@ -4810,12 +4810,17 @@ notify a task when a message is available on a queue. int close(int fd); int dup(int fildes); int dup2(int fildes1, int fildes2); - off_t lseek(int fd, off_t offset, int whence); + off_t lseek(int fd, off_t offset, int whence); /* Prototyped but not implemented */ int read(int fd, void *buf, unsigned int nbytes); int unlink(const char *path); int write(int fd, const void *buf, unsigned int nbytes); + +

2.10.2 Directory Operations

Index