19 lines
352 B
C
19 lines
352 B
C
|
/* Part of libvboxfs - (c) 2012, D.C. van Moolenbroek */
|
||
|
|
||
|
#ifndef _VBOXFS_INC_H
|
||
|
#define _VBOXFS_INC_H
|
||
|
|
||
|
#include <minix/drivers.h>
|
||
|
#include <minix/vbox.h>
|
||
|
#include <minix/sffs.h>
|
||
|
#include <minix/vboxfs.h>
|
||
|
#include <sys/queue.h>
|
||
|
#include <fcntl.h>
|
||
|
#include <assert.h>
|
||
|
|
||
|
#include "vboxfs.h"
|
||
|
#include "glo.h"
|
||
|
#include "proto.h"
|
||
|
|
||
|
#endif /* !_VBOXFS_INC_H */
|