1 /* 2 * Copyright 2002-2008, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Copyright 2001-2002, Travis Geiselbrecht. All rights reserved. 6 * Distributed under the terms of the NewOS License. 7 */ 8 #ifndef _SYSTEM_VFS_DEFS_H 9 #define _SYSTEM_VFS_DEFS_H 10 11 #include <sys/stat.h> 12 13 #include <SupportDefs.h> 14 15 16 struct fd_info { 17 int number; 18 int32 open_mode; 19 dev_t device; 20 ino_t node; 21 }; 22 23 #endif /* _SYSTEM_VFS_DEFS_H */ 24