matos/core/fs.c

14 lines
164 B
C
Raw Normal View History

2024-05-23 00:21:41 +02:00
#include "fs.h"
int fsInodeUnref(struct inode *inode)
{
(void)inode;
return 0;
};
int fsInodeRef(struct inode *inode)
{
(void)inode;
return 0;
};