/* byte.h -- Header file defining the data type '_byte'.
   MR May 2001
*/
 
#ifndef _BYTE_H_
#define _BYTE_H_

typedef unsigned char _byte;

#endif //_BYTE_H_

