/**************************************************************************//** * @item CosyOS-III Kernel * @file os_base.h * @brief 基本数据类型定义 * @author 迟凯峰 * @version V2.3.0 * @date 2026.02.01 ******************************************************************************/ #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; typedef s_u8_t s_ecode_t; /*!< 错误码类型 */ #endif