summaryrefslogtreecommitdiff
path: root/pfinet/linux/types.h
blob: c978fb07f739c49dbc7f8db12ea33b755f49137b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _HACK_TYPES_H
#define _HACK_TYPES_H

#include <sys/types.h>
typedef unsigned char __u8;
typedef unsigned short __u16;
typedef unsigned long __u32;

/* Hackery */
struct inode
{
  uid_t i_uid;
};


#endif