1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-15 01:23:49 +01:00

sys/riotboot: fix compilation error of riotboot_slot

`riotboot_slot` uses `ARRAY_SIZE` which is defined in `container.h` but not yet included on some plattforms.
This commit is contained in:
Gunar Schorcht 2023-03-19 16:30:41 +01:00
parent 812c216f0c
commit f4f716a062

View File

@ -24,7 +24,9 @@
#include <assert.h>
#include <string.h>
#include <inttypes.h>
#include <stdio.h>
#include "container.h"
#include "cpu.h"
#include "riotboot/slot.h"
#include "riotboot/hdr.h"