Subversion Repositories HelenOS

Rev

Rev 2857 | Rev 2859 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2857 Rev 2858
Line 309... Line 309...
309
static void *fat_create(int flags)
309
static void *fat_create(int flags)
310
{
310
{
311
    return NULL;    /* not supported at the moment */
311
    return NULL;    /* not supported at the moment */
312
}
312
}
313
 
313
 
314
static bool fat_destroy(void *node)
314
static int fat_destroy(void *node)
315
{
315
{
316
    return false;   /* not supported at the moment */
316
    return ENOTSUP; /* not supported at the moment */
317
}
317
}
318
 
318
 
319
static bool fat_link(void *prnt, void *chld, const char *name)
319
static bool fat_link(void *prnt, void *chld, const char *name)
320
{
320
{
321
    return false;   /* not supported at the moment */
321
    return false;   /* not supported at the moment */