[Libsysio-commit] HEAD: libsysio/drivers/native fs_native.c
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2004-07-03 05:47:21
|
Update of /cvsroot/libsysio/libsysio/drivers/native In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11075/drivers/native Modified Files: fs_native.c Log Message: A new, major change, to .../include/xtio.h. This is intended to be the include file for applications. It prototype all of the extended API available as well as the necessary structures. Other shanges to support this. We now need it most everywhere to build the library as well. Index: fs_native.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/drivers/native/fs_native.c,v retrieving revision 1.38 retrieving revision 1.39 diff -u -w -b -B -p -r1.38 -r1.39 --- fs_native.c 25 May 2004 17:53:43 -0000 1.38 +++ fs_native.c 3 Jul 2004 05:47:12 -0000 1.39 @@ -51,6 +51,9 @@ #include <string.h> #endif #include <unistd.h> +#if !(defined(REDSTORM) || defined(MAX_IOVEC)) +#include <limits.h> +#endif #include <errno.h> #include <assert.h> #include <syscall.h> @@ -65,16 +68,14 @@ #include <sys/statfs.h> #endif #include <utime.h> +#include <sys/uio.h> #include <sys/queue.h> -#if !(defined(REDSTORM) || defined(MAX_IOVEC)) -#include <limits.h> -#endif +#include "xtio.h" #include "sysio.h" #include "fs.h" #include "mount.h" #include "inode.h" -#include "xtio.h" #include "fs_native.h" |