mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 23:03:27 +08:00
Make use of FAR consistent in stdio.h
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1182 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
+3
-3
@@ -63,7 +63,7 @@ static inline int statpsuedofs(FAR struct inode *inode, FAR struct statfs *buf)
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* Global Functions
|
||||
* Public Functions
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
@@ -82,10 +82,10 @@ static inline int statpsuedofs(FAR struct inode *inode, FAR struct statfs *buf)
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
int statfs(const char *path, struct statfs *buf)
|
||||
int statfs(FAR const char *path, FAR struct statfs *buf)
|
||||
{
|
||||
FAR struct inode *inode;
|
||||
const char *relpath = NULL;
|
||||
FAR const char *relpath = NULL;
|
||||
int ret = OK;
|
||||
|
||||
/* Sanity checks */
|
||||
|
||||
Reference in New Issue
Block a user