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