mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2024-11-01 16:25:20 +02:00
19 lines
507 B
C
19 lines
507 B
C
/*
|
|
* Authors: Xiangfu Liu <xiangfu@qi-hardware.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version
|
|
* 3 of the License, or (at your option) any later version.
|
|
*/
|
|
|
|
#ifndef __COMMON_TYPES_H__
|
|
#define __COMMON_TYPES_H__
|
|
|
|
typedef unsigned int size_t;
|
|
typedef unsigned char u8;
|
|
typedef unsigned short u16;
|
|
typedef unsigned int u32;
|
|
|
|
#endif // __COMMON_TYPES_H__
|