Keil编译时出现错误“duplicate specifier in declaration”和“invalid combination of type specifiers”

keil编译时,出现错误:

C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h(56): error:  #240: duplicate specifier in declaration
typedef   signed          char int8_t;  
C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h(56): error:  #84: invalid combination of type specifiers
typedef   signed          char int8_t;

头文件a.h

#define int8_t unsigned char;

头文件stdint.h

typedef unsigned char int8_t;

当在另一文件同时引用这两个头文件时就可能出现先这个错误。
test.c

#include "a.h"
#include <stdint.h>

int8_t test = 0;

如果a.h在stdint.h之前引用就会出现这个错误,因为这时int8_t首先会替换成unsigned char,之后 unsigned char由stdint.h中的定义又会被替换成int8_t,这显然是错误的。

如果a.h在stdint.h之后引用就不会出现这个错误。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值