Namespace conflict cleaned up.

This commit is contained in:
Pavel Machek 1998-10-13 10:45:02 +00:00
parent 176dc1f70d
commit 29e3c314bf
2 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,7 @@
Tue Oct 13 12:42:10 1998 Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>
* vfs.h (vfs_struct): renamed to avoid namespace conflict
Mon Oct 12 22:42:30 1998 Pavel Machek <pavel@bug.ucw.cz>
* sfs.c: reuse mmap from local.c

View File

@ -33,9 +33,13 @@ struct utimbuf {
typedef void * vfsid;
struct vfs_stamping;
typedef struct vfs {
struct vfs *next;
/* Notice: Andrej Borsenkow <borsenkow.msk@sni.de> reports system
(RelianUNIX), where it is bad idea to define struct vfs. That system
mas include called <sys/vfs.h>, which contains things like vfs_t.
*/
typedef struct vfs_struct {
struct vfs_struct *next;
char *name; /* "FIles over SHell" */
int flags;
#define F_EXEC 1