[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
1 changed files with 1 additions and 1 deletions

View File

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