stat.c: Fix missing prototype warnings

This commit is contained in:
Joel Sherrill
2013-09-22 10:24:39 -05:00
parent d334b60b04
commit 59abbecebb

View File

@@ -6,7 +6,7 @@
*/ */
/* /*
* COPYRIGHT (c) 1989-1999. * COPYRIGHT (c) 1989-2013.
* On-Line Applications Research Corporation (OAR). * On-Line Applications Research Corporation (OAR).
* *
* The license and distribution terms for this file may be * The license and distribution terms for this file may be
@@ -34,6 +34,11 @@
#include <rtems/libio_.h> #include <rtems/libio_.h>
/*
* Prototype to avoid warnings
*/
int _STAT_NAME( const char *path, struct stat *buf );
/** /**
* POSIX 1003.1b 5.6.2 - Get File Status * POSIX 1003.1b 5.6.2 - Get File Status
* *
@@ -60,6 +65,15 @@ int _STAT_NAME( const char *path, struct stat *buf )
#include <reent.h> #include <reent.h>
/*
* Prototype to avoid warnings
*/
int _STAT_R_NAME(
struct _reent *ptr __attribute__((unused)),
const char *path,
struct stat *buf
);
/** /**
* This is the Newlib dependent reentrant version of stat() and lstat(). * This is the Newlib dependent reentrant version of stat() and lstat().
*/ */