// $Id: jcl_int.h,v 1.1 1999/11/04 18:48:03 shields Exp $
//
// This software is subject to the terms of the IBM Jikes Compiler
// License Agreement available at the following URL:
// http://www.ibm.com/research/jikes.
// Copyright (C) 1996, 1998, International Business Machines Corporation
// and others.  All Rights Reserved.
// You must accept the terms of that agreement to use this software.
//
#ifndef jcl_int_INCLUDED
#define jcl_int_INCLUDED

typedef unsigned char  u1;
typedef unsigned short u2;
typedef unsigned int   u4;

typedef signed int     i4;
typedef signed short   i2;
typedef signed char    i1;

#endif
