[Libsysio-commit] HEAD: libsysio/src fcntl.c
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2007-03-28 20:50:46
|
Update of /cvsroot/libsysio/libsysio/src In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2180/src Modified Files: fcntl.c Log Message: Need to include definition for struct stat from the system. Index: fcntl.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/src/fcntl.c,v retrieving revision 1.25 retrieving revision 1.26 diff -u -w -b -B -p -r1.25 -r1.26 --- fcntl.c 24 Mar 2006 16:34:07 -0000 1.25 +++ fcntl.c 28 Mar 2007 20:50:41 -0000 1.26 @@ -42,11 +42,12 @@ */ #include <string.h> -#include <unistd.h> #include <stdlib.h> #include <errno.h> #include <assert.h> #include <sys/types.h> +#include <sys/stat.h> +#include <unistd.h> #include <fcntl.h> #include <sys/queue.h> |