Subversion Repositories shark

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1085 pj 1
#ifndef __TYPES_H__
2
#define __TYPES_H__
3
 
4
#include <sys/types.h>
5
 
6
typedef unsigned char   u_int8_t;
7
typedef unsigned short  u_int16_t;
8
typedef unsigned long   u_int32_t;
9
 
10
#include <types.h>
11
 
12
#endif
13