kern

diff src/file.h @ 90:7ff2b4971216

started work on the filesystem
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 09 Dec 2011 13:44:15 +0200
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/file.h	Fri Dec 09 13:44:15 2011 +0200
     1.3 @@ -0,0 +1,11 @@
     1.4 +#ifndef FILE_H_
     1.5 +#define FILE_H_
     1.6 +
     1.7 +#include "fs.h"
     1.8 +
     1.9 +struct file {
    1.10 +	struct inode *inode;
    1.11 +	long ptr;
    1.12 +};
    1.13 +
    1.14 +#endif	/* FILE_H_ */