Home | History | Annotate | Line # | Download | only in common
      1 /*
      2  * File:	int_size.h
      3  *
      4  * Copyright (c) Freescale Semiconductor, Inc. All rights reserved.
      5  * See included license file for license details.
      6  */
      7 #if !defined(_int_size_h_)
      8 #define _int_size_h_
      9 
     10 namespace elftosb
     11 {
     12 
     13 //! Supported sizes of integers.
     14 typedef enum {
     15 	kWordSize,		//!< 32-bit word.
     16 	kHalfWordSize,	//!< 16-bit half word.
     17 	kByteSize		//!< 8-bit byte.
     18 } int_size_t;
     19 
     20 }; // namespace elftosb
     21 
     22 #endif // _int_size_h_
     23