summaryrefslogtreecommitdiff
path: root/libc/include/generic/types.h
blob: 5798f79e1ddf348b872bc3d1d3f8e557ce9ed67c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

/* arch/i86/include/asm/types.h - Basic Linux/MT data types. */

#ifndef __GENERIC_TYPES_H
#define __GENERIC_TYPES_H

#include <asm/types.h>

typedef __u32 off_t;
typedef __u32 time_t;
typedef __u16 mode_t;
typedef __u32 loff_t;
typedef __u32 speed_t;

typedef __u32 tcflag_t;
typedef __u8  cc_t;

typedef int   ptrdiff_t;
typedef int size_t;

#endif