diff options
author | David McNab <david@rebirthing.co.nz> | 2003-12-22 23:26:52 +0000 |
---|---|---|
committer | David McNab <david@rebirthing.co.nz> | 2003-12-22 23:26:52 +0000 |
commit | 73070a4396d22378763e769f31e9df711b170843 (patch) | |
tree | 3833a4359a13342f82dace3fe52dd7c879bda964 /python/_fusemodule.c | |
parent | 2f3d940b2e5fa1c6c0b44372bd3372a20ccc71ab (diff) | |
download | libfuse-73070a4396d22378763e769f31e9df711b170843.tar.gz |
Changed the '#include <fuse.h>' to '#include "fuse.h"' to allow symlinking
of fuse.h into python dir.
Diffstat (limited to 'python/_fusemodule.c')
-rw-r--r-- | python/_fusemodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/_fusemodule.c b/python/_fusemodule.c index c323c60..9518074 100644 --- a/python/_fusemodule.c +++ b/python/_fusemodule.c @@ -11,7 +11,7 @@ //@+others //@+node:includes #include <Python.h> -#include <fuse.h> +#include "fuse.h" #include <time.h> //@-node:includes //@+node:globals |