diff --git a/ChangeLog b/ChangeLog index 6f21cf3c19a..bd0addd0fcf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -417,4 +417,6 @@ * NSH now supports comments beginning with '#' * NSH now supports commands to inspect and modify memory * NSH cat command now supports multiple files on command line + * Add chdir() and getcwd() + diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index 1c48e5d5838..05c44e37e74 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -8,7 +8,7 @@

NuttX RTOS

-

Last Updated: August 21, 2008

+

Last Updated: August 22, 2008

@@ -1051,6 +1051,7 @@ nuttx-0.3.13 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> * NSH now supports comments beginning with '#' * NSH now supports commands to inspect and modify memory * NSH cat command now supports multiple files on command line + * Add chdir() and getcwd() pascal-0.1.3 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> diff --git a/Documentation/NuttxUserGuide.html b/Documentation/NuttxUserGuide.html index e5cb13eb3b7..0feb1ef0e18 100644 --- a/Documentation/NuttxUserGuide.html +++ b/Documentation/NuttxUserGuide.html @@ -21,7 +21,7 @@ User's Manual

Gregory Nutt

-Last Update: August 10, 2008 +Last Update: August 22, 2008

1.0 Introduction

@@ -5942,6 +5942,11 @@ interface of the same name. void seekdir(FAR DIR *dirp, int loc); int telldir(FAR DIR *dirp); +

2.11.4 Standard I/O