typedef unsigned int uint32_t; typedef unsigned __INT64 uint64_t; typedef uint32_t u32; typedef uint16_t u16; typedef uint8_t u8; typedef int32_t s32; typedef int16_t s16; typedef int8_t s8; //追溯一个定义: typedef __SIZE_TYPE__ size_t; // size_t 是__SIZE_TYPE__的别名...
typedef signed short int int16_t; typedef signed int int32_t; typedef unsigned char uint8_t; typedef unsigned short int uint16_t; typedef unsigned int uint32_t; typedef unsigned long long uint64_t; typedef signed char s8; typedef signed short int s16; typedef signed int s32; typedef s...
typedef int __int32_t; typedef int __uint32_t; typedef int __int64_t; typedef int __uint64_t; typedef int __int_least32_t; typedef int __uint_least32_t; typedef int __s8; typedef int __u8; typedef int __s16; typedef int __u16; typedef int __s32; typedef int __u32;...
int res; struct blk_desc *dev_desc; disk_partition_t info; struct disk_partition info; u64 sz = 0; dev_desc = blk_get_dev("mmc", CONFIG_FASTBOOT_FLASH_MMC_DEV); Expand Down 2 changes: 1 addition & 1 deletion 2 arch/arm/mach-stm32mp/cmd_stm32prog/stm32prog.c Show comment...