forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-11-23 7d07b3ae8ddad407913c5301877e694430a3263f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _TYPES_H_
#define _TYPES_H_
 
typedef unsigned char        u8;
typedef unsigned short        u16;
typedef unsigned int        u32;
typedef unsigned long long    u64;
typedef char                s8;
typedef short                s16;
typedef int                    s32;
typedef long long            s64;
 
#define BIT(x)    (1UL<<(x))
 
#define err (-1)
 
#endif