Browse Source

[DFS] Export dfs_subdir/dfs_normalize_path symbol to module.

Bernard Xiong 10 years ago
parent
commit
a7d6e284d0
1 changed files with 3 additions and 0 deletions
  1. 3 0
      components/dfs/src/dfs.c

+ 3 - 0
components/dfs/src/dfs.c

@@ -284,6 +284,7 @@ const char *dfs_subdir(const char *directory, const char *filename)
 
 
     return dir;
     return dir;
 }
 }
+RTM_EXPORT(dfs_subdir);
 
 
 /**
 /**
  * this function will normalize a path according to specified parent directory
  * this function will normalize a path according to specified parent directory
@@ -410,5 +411,7 @@ up_one:
 
 
     return fullpath;
     return fullpath;
 }
 }
+RTM_EXPORT(dfs_normalize_path);
+
 /*@}*/
 /*@}*/