From 03cb4367d67ba9cdedf22df743d25d81093941d7 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 18 Sep 2004 08:16:14 +0000 Subject: r2404: the first large lump of posix vfs stuff. this is still very much a skeleton (with many limbs missing too!). I am committing this early to get some feedback on the approach taken. (This used to be commit 40d5cae5ebbfe328e193eadb685df6a370730299) --- source4/include/includes.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source4/include/includes.h') diff --git a/source4/include/includes.h b/source4/include/includes.h index b033d584f8..bf566a01d6 100644 --- a/source4/include/includes.h +++ b/source4/include/includes.h @@ -676,6 +676,11 @@ extern int errno; #include "libnet/libnet.h" #include "utils/net/net.h" +/* hmm, this really is getting ugly isn't it .... we probably need to + have some way to have subsystem includes without including it + globally */ +#include "ntvfs/posix/vfs_posix.h" + #define malloc_p(type) (type *)malloc(sizeof(type)) #define malloc_array_p(type, count) (type *)realloc_array(NULL, sizeof(type), count) #define realloc_p(p, type, count) (type *)realloc_array(p, sizeof(type), count) -- cgit