~ubuntu-branches/ubuntu/wily/musl/wily

« back to all changes in this revision

Viewing changes to arch/sh/bits/stat.h

  • Committer: Package Import Robot
  • Author(s): Kevin Bortis
  • Date: 2014-03-22 09:39:56 UTC
  • mfrom: (4.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140322093956-1oc4xt9b2n3domo7
Tags: 1.0.0-1
* Import upstream version 1.0.0
* Provide musl-ldd (Closes: #732169)
* Arch independent ld-musl-config (Closes: #739205)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* copied from kernel definition, but with padding replaced
 
2
 * by the corresponding correctly-sized userspace types. */
 
3
 
 
4
struct stat
 
5
{
 
6
        dev_t st_dev;
 
7
        int __st_dev_padding;
 
8
        long __st_ino_truncated;
 
9
        mode_t st_mode;
 
10
        nlink_t st_nlink;
 
11
        uid_t st_uid;
 
12
        gid_t st_gid;
 
13
        dev_t st_rdev;
 
14
        int __st_rdev_padding;
 
15
        off_t st_size;
 
16
        blksize_t st_blksize;
 
17
        blkcnt_t st_blocks;
 
18
        struct timespec st_atim;
 
19
        struct timespec st_mtim;
 
20
        struct timespec st_ctim;
 
21
        ino_t st_ino;
 
22
};