matos/core/fs.c
2024-05-23 00:21:41 +02:00

14 lines
164 B
C

#include "fs.h"
int fsInodeUnref(struct inode *inode)
{
(void)inode;
return 0;
};
int fsInodeRef(struct inode *inode)
{
(void)inode;
return 0;
};