User\main.c(16): error: #79: expected a type specifier
1 GPIO_ResetBits(GPIOC,GPIO_Pin_13);//点亮LED小灯
2 void Delay_ms(10);
3 GPIO_SetBits(GPIOC,GPIO_Pin_13);//熄灭Led小灯
4 Delay_ms(10);
原因第二行多写了void
User\main.c(16): error: #79: expected a type specifier
1 GPIO_ResetBits(GPIOC,GPIO_Pin_13);//点亮LED小灯
2 void Delay_ms(10);
3 GPIO_SetBits(GPIOC,GPIO_Pin_13);//熄灭Led小灯
4 Delay_ms(10);
原因第二行多写了void