fs/inode/inode.h: Fix a warning 'inode/inode.h:264:45: error: 'struct stat' declared inside parameter list' by adding a forward reference to struct stat. Noted by David Sidrane.

This commit is contained in:
Gregory Nutt 2017-02-13 17:19:49 -06:00
parent 78fa87c7db
commit a2e74f2583
1 changed files with 1 additions and 0 deletions

View File

@ -261,6 +261,7 @@ int inode_find(FAR struct inode_search_s *desc);
*
****************************************************************************/
struct stat; /* Forward reference */
int inode_stat(FAR struct inode *inode, FAR struct stat *buf);
/****************************************************************************