1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-12 19:10:32 +03:00

[LIB] stm32h7xx_hal_def.h : Include <stddef.h> instead of <stdio.h>

Inclusion of <stdio.h> produces poisoned function alert for sprintf and
variants.
F7 use <stddef.h> instead of <stdio.h>
This commit is contained in:
jflyper 2018-10-10 14:21:45 +09:00
parent 22dd78f247
commit e124693d48

View file

@ -45,7 +45,7 @@
/* Includes ------------------------------------------------------------------*/
#include "stm32h7xx.h"
#include "Legacy/stm32_hal_legacy.h"
#include <stdio.h>
#include <stddef.h>
/* Exported types ------------------------------------------------------------*/