summaryrefslogtreecommitdiff
path: root/include/kernel/fd.h
blob: 07cf454b6b73b15e18b68c0fa4b35eadb3243df8 (plain)
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