Subject: changed files: 'src/sys/sys stat.h'
To: Chris G. Demetriou <cgd@sun-lamp.cs.berkeley.edu>
From: J.T. Conklin <conklin@ngai.kaleida.com>
List: source-changes
Date: 11/10/1993 10:19:53
Chris> Update of /b/source/CVS/src/sys/sys
Chris> In directory sun-lamp.cs.berkeley.edu:/e/users/cgd/trees/all/src/sys/sys

Chris> Modified Files:
Chris> 	stat.h 
Chris> Log Message:
Chris> include sys/time.h; we'll need it eventually.

Carefull when making changes like this --- in strict ANSI and/or
strict POSIX modes, the header files are not allowed to define/declare
symbols other than those specified.

So, even though <sys/types.h> and <sys/time.h> have to be included
before <sys/stat.h> is, you can't just #include them in <sys/stat.h>
(At least not without wrapping them in a #ifndef _POSIX_SOURCE)

	--jtc


------------------------------------------------------------------------------