repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
sprofalyze fixes
[minix.git]
/
lib
/
libsffs
/
inc.h
blob
cffad59da615326b8829c5812afb9cd9d3b0fe40
1
#ifndef _SFFS_INC_H
2
#define _SFFS_INC_H
3
4
#include <minix/drivers.h>
5
#include <minix/vfsif.h>
6
#include <minix/optset.h>
7
#include <minix/sffs.h>
8
#include <sys/stat.h>
9
#include <sys/queue.h>
10
#include <assert.h>
11
12
#if DEBUG
13
#define dprintf(x) printf x
14
#else
15
#define dprintf(x)
16
#endif
17
18
#include
"type.h"
19
#include
"const.h"
20
#include
"proto.h"
21
#include
"glo.h"
22
#include
"inode.h"
23
24
#endif
/* _SFFS_INC_H */