blob: 5ef36958b668112cfbbfa2231d8e39f9ecb0ede8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef _PROCFS_INC_H
#define _PROCFS_INC_H
#include <minix/drivers.h>
#include <minix/param.h>
#include <minix/sysctl.h>
#include <minix/sysinfo.h>
#include <minix/vtreefs.h>
#include <minix/procfs.h>
#include <assert.h>
#include <machine/archtypes.h>
#include "kernel/const.h"
#include "kernel/type.h"
#include "kernel/proc.h"
#include "vfs/const.h"
#include "vfs/dmap.h"
#include "const.h"
#include "type.h"
#include "proto.h"
#include "glo.h"
#endif /* _PROCFS_INC_H */
|