From 5b8fd5501cbb5018287fb7e0ef7b220f8e45ca8e Mon Sep 17 00:00:00 2001 From: patacongo Date: Sun, 27 May 2007 23:09:23 +0000 Subject: [PATCH] Remove duplicate definition of struct statfs git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@260 42af7a65-404d-4744-a932-0658087f49c3 --- Documentation/NuttxUserGuide.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Documentation/NuttxUserGuide.html b/Documentation/NuttxUserGuide.html index 3fd59357c3..46b4b2be44 100644 --- a/Documentation/NuttxUserGuide.html +++ b/Documentation/NuttxUserGuide.html @@ -21,7 +21,7 @@ User's Manual

Gregory Nutt

-Last Update: March 28, 2007 +Last Update: May 27, 2007

1.0 Introduction

@@ -5725,7 +5725,7 @@ 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); /* Prototyped but not implemented */ + off_t lseek(int fd, off_t offset, int whence); int read(int fd, void *buf, unsigned int nbytes); int unlink(const char *path); int write(int fd, const void *buf, unsigned int nbytes); @@ -5768,7 +5768,7 @@ notify a task when a message is available on a queue. int printf(const char *format, ...); int puts(const char *s); - int rename(const char *source, const char *target); /* Prototyped but not implemented */ + int rename(const char *source, const char *target); int sprintf(char *dest, const char *format, ...); int ungetc(int c, FILE *stream); int vprintf(const char *s, va_list ap); @@ -5779,9 +5779,9 @@ notify a task when a message is available on a queue. FILE *fdopen(int fd, const char *type); int fstat(int fd, FAR struct stat *buf); /* Prototyped but not implemented */ char *getcwd(FAR char *buf, size_t size); /* Prototyped but not implemented */ - int mkdir(const char *path, mode_t mode); /* Prototyped but not implemented */ - int rmdir(const char *path); /* Prototyped but not implemented */ - int stat(const char *path, FAR struct stat *buf); /* Prototyped but not implemented */ + int mkdir(const char *path, mode_t mode); + int rmdir(const char *path); + int stat(const char *path, FAR struct stat *buf); int statfs(const char *path, FAR struct statfs *buf); /* Prototyped but not implemented */