Added bx_ types to allow compilation on systems that

already define u_char, etc.

This gets it compiling under AIX 4.3.1.
This commit is contained in:
Gregory Alexander 2001-04-11 14:31:45 +00:00
parent 4f381132e1
commit a9bcd531f2
1 changed files with 10 additions and 0 deletions

View File

@ -2,6 +2,16 @@
#define _LINUX_TYPES_H
#ifndef __ASSEMBLY__
#define u_char bx_u_char
#define u_short bx_u_short
#define u_int bx_u_int
#define u_long bx_u_long
#define unchar bx_unchar
#define ushort bx_ushort
#define uint bx_uint
#define ulong bx_ulong
/* bsd */
typedef unsigned char u_char;
typedef unsigned short u_short;