File: types.h

package info (click to toggle)
e2fsprogs 1.47.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 43,236 kB
  • sloc: ansic: 134,194; sh: 7,343; makefile: 5,324; awk: 524; perl: 376; cpp: 207; sed: 186; python: 23
file content (33 lines) | stat: -rw-r--r-- 586 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef _LINUX_TYPES_H
#define _LINUX_TYPES_H

//#ifndef _MSC_VER
//#error  _MSC_VER not defined
//#endif

#include <sys/types.h>

typedef unsigned __int8 __u8;
typedef signed __int8 __s8;

typedef signed   __int64 __s64;
typedef unsigned __int64 __u64;

typedef	signed   __int16	__s16;
typedef	unsigned __int16	__u16;

typedef	signed   __int32	__s32;
typedef	unsigned __int32	__u32;

typedef	signed   __int64	__s64;
typedef	unsigned __int64	__u64;


//typedef __u32 ino_t;
typedef __u32 dev_t;
typedef __u32 uid_t;
typedef __u32 gid_t;

#include <stdint.h>

#endif /* LINUX_TYPES_H */