summaryrefslogtreecommitdiff
path: root/libc/kinclude/linuxmt/types.h
blob: 1450d2579e99b219df12fbe088f2acacb5e63e2c (plain)
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
34
#ifndef __LINUXMT_TYPES_H
#define __LINUXMT_TYPES_H

#include "../arch/types.h"

/* Throw away _FUNCTION parameters - the syntax is ripped off of Minix's
   _PROTOTYPE.  Considering Borland did the same thing to MFC on a bigger
   scale, I don't think PH will mind :) */

/* Yes, this should be in arch/types.h too */

#define _FUNCTION(function, params) function()
#define _VFUNCTION(functiom, params) (*function) ()

typedef __u32 off_t;
typedef __u16 pid_t;
typedef __u16 uid_t;
typedef __u16 gid_t;
typedef __u32 time_t;
typedef __u16 umode_t;
typedef __u16 nlink_t;
typedef __u16 mode_t;
typedef __u32 loff_t;
typedef __u32 speed_t;

typedef __u16 dev_t;
typedef __u16 ino_t;
typedef __u32 tcflag_t;
typedef __u8  cc_t;

typedef int   ptrdiff_t;

#endif