~sheosi/helenos/lua

« back to all changes in this revision

Viewing changes to uspace/lib/c/generic/vfs/vfs.c

  • Committer: Sergio Tortosa (sheosi)
  • Date: 2013-12-22 14:13:23 UTC
  • mfrom: (2032.1.12 mainline)
  • Revision ID: sertorbe@gmail.com-20131222141323-gbiqm4j2w9sbjty5
MergedĀ mainline

Show diffs side-by-side

added added

removed removed

Lines of Context:
741
741
        return rc;
742
742
}
743
743
 
 
744
int remove(const char *path)
 
745
{
 
746
        return unlink(path);
 
747
}
 
748
 
744
749
int chdir(const char *path)
745
750
{
746
751
        size_t abs_size;