mirror of
https://gitee.com/cosyos/cosyos.git
synced 2026-02-06 03:41:41 +08:00
23 lines
557 B
C
23 lines
557 B
C
/**************************************************************************//**
|
|
* @item CosyOS-III Kernel
|
|
* @file os_base.h
|
|
* @brief 基本数据类型定义
|
|
* @author 迟凯峰
|
|
* @version V2.0.0
|
|
* @date 2025.08.04
|
|
******************************************************************************/
|
|
|
|
#ifndef __OS_BASE_H
|
|
#define __OS_BASE_H
|
|
|
|
typedef char s_s8_t;
|
|
typedef short s_s16_t;
|
|
typedef long s_s32_t;
|
|
typedef unsigned char s_u8_t;
|
|
typedef unsigned short s_u16_t;
|
|
typedef unsigned long s_u32_t;
|
|
|
|
|
|
|
|
#endif
|