Subversion Repositories shark

Rev

Rev 2 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 pj 1
 
2
#include <fs/types.h>
3
#include "fs.h"
4
 
5
int k_umount(__dev_t device)
6
{
7
  call_to_fs();
8
  return_from_fs(umount_device(device));
9
}
10