More ARMv7-A files that are just copies of the ARMv4/5 files for now

This commit is contained in:
Gregory Nutt
2013-07-19 11:43:04 -06:00
parent 8a654d000b
commit 4bb75f9a3f
2 changed files with 9 additions and 7 deletions

View File

@@ -157,7 +157,8 @@ FAR const char *nsh_getcwd(void)
****************************************************************************/
#if CONFIG_NFILE_DESCRIPTORS > 0 && !defined(CONFIG_DISABLE_ENVIRON)
char *nsh_getfullpath(FAR struct nsh_vtbl_s *vtbl, const char *relpath)
FAR char *nsh_getfullpath(FAR struct nsh_vtbl_s *vtbl,
FAR const char *relpath)
{
const char *wd;
@@ -196,11 +197,11 @@ char *nsh_getfullpath(FAR struct nsh_vtbl_s *vtbl, const char *relpath)
****************************************************************************/
#if CONFIG_NFILE_DESCRIPTORS > 0 && !defined(CONFIG_DISABLE_ENVIRON)
void nsh_freefullpath(char *relpath)
void nsh_freefullpath(FAR char *fullpath)
{
if (relpath)
if (fullpath)
{
free(relpath);
free(fullpath);
}
}
#endif