1 2 3 4 5 6 7 8 9 10 11 12
#ifndef _FD_H #define _FD_H #include <kernel/fs.h> #include <stdint.h> #include <sys/types.h> void fd_init(void); void fd_block_read(struct buffer*); #endif