From f4939e48ed3d811429d6c39ea5c48ae6767c97b5 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Tue, 12 May 2015 13:43:04 -0600 Subject: [PATCH] Fix some references to statfs being in stdio.h in documentation --- Documentation/NuttxUserGuide.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Documentation/NuttxUserGuide.html b/Documentation/NuttxUserGuide.html index c2d65d00d1..8eecc9052b 100644 --- a/Documentation/NuttxUserGuide.html +++ b/Documentation/NuttxUserGuide.html @@ -8089,7 +8089,6 @@ FAR FILE *fdopen(int fd, FAR const char *type); int dprintf(int fd, FAR const char *fmt, ...); int vdprintf(int fd, FAR const char *fmt, va_list ap); -int statfs(FAR const char *path, FAR struct statfs *buf); FAR char *tmpnam(FAR char *s); FAR char *tempnam(FAR const char *dir, FAR const char *pfx); @@ -8102,8 +8101,8 @@ int fstat(int fd, FAR struct stat *buf); #include <sys/statfs.h> -int statfs(const char *path, struct statfs *buf); -int fstatfs(int fd, struct statfs *buf); +int statfs(FAR const char *path, FAR struct statfs *buf); +int fstatfs(int fd, FAR struct statfs *buf);

2.10.6 Standard Library