diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-09-18 08:16:14 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:48 -0500 |
commit | 03cb4367d67ba9cdedf22df743d25d81093941d7 (patch) | |
tree | 0d6d97adec85cf9d4d67c34d8fc4e55b0b0eb019 /source4/include | |
parent | 046380c56c35177ccf49d0a40e3771242b134277 (diff) | |
download | samba-03cb4367d67ba9cdedf22df743d25d81093941d7.tar.gz samba-03cb4367d67ba9cdedf22df743d25d81093941d7.tar.bz2 samba-03cb4367d67ba9cdedf22df743d25d81093941d7.zip |
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)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/includes.h | 5 |
1 files changed, 5 insertions, 0 deletions
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) |