#define STM32F10X_LD #include <stm32f10x.h> int i = 0; int off = 5; void inc(void) { i += off; } int main(void) { while (1) inc(); }
Standard input is empty
prog.c:3:23: fatal error: stm32f10x.h: No such file or directory
#include <stm32f10x.h>
^
compilation terminated.
Standard output is empty