basic: make macro-fundamental.h self-contained

When !SD_BOOT, it used size_t without including the appropriate header.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek
2022-05-17 14:15:44 +02:00
parent 68df2df668
commit c3e4cbe0c5

View File

@@ -2,7 +2,8 @@
#pragma once
#ifndef SD_BOOT
#include <assert.h>
# include <assert.h>
# include <stddef.h>
#endif
#include <limits.h>