Changeset 852b801 in mainline for uspace/lib/libc/include/sys/stat.h
- Timestamp:
- 2009-06-28T18:59:02Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 75160a6
- Parents:
- 4198f9c3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/sys/stat.h
r4198f9c3 r852b801 37 37 38 38 #include <sys/types.h> 39 #include <bool.h> 40 #include <ipc/vfs.h> 41 #include <ipc/devmap.h> 39 42 43 struct stat { 44 fs_handle_t fs_handle; 45 dev_handle_t dev_handle; 46 fs_index_t index; 47 unsigned lnkcnt; 48 bool is_file; 49 off_t size; 50 union { 51 struct { 52 dev_handle_t device; 53 } devfs_stat; 54 }; 55 }; 56 57 extern int fstat(int, struct stat *); 40 58 extern int mkdir(const char *, mode_t); 41 59
Note:
See TracChangeset
for help on using the changeset viewer.