kern

annotate src/file.h @ 97:8717eb590727

ok stopping with the filesystem to manage to write the article in time
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 17 Dec 2011 14:09:17 +0200
parents
children
rev   line source
nuclear@90 1 #ifndef FILE_H_
nuclear@90 2 #define FILE_H_
nuclear@90 3
nuclear@90 4 #include "fs.h"
nuclear@90 5
nuclear@90 6 struct file {
nuclear@90 7 struct inode *inode;
nuclear@90 8 long ptr;
nuclear@90 9 };
nuclear@90 10
nuclear@90 11 #endif /* FILE_H_ */