eeprom: add missing include stddef.h

Fixes compiler warning in test environment:

Prusa-Firmware/Firmware/eeprom.h:712:51: error: ‘size_t’ has not been declared
712 | bool eeprom_is_initialized_block(const void *__p, size_t __n);
      |
This commit is contained in:
gudnimg 2024-08-06 12:59:55 +00:00 committed by Guðni Már Gilbert
parent ad1e3cb12a
commit 9ae8beacc6
1 changed files with 1 additions and 0 deletions

View File

@ -12,6 +12,7 @@
#define EEPROM_H #define EEPROM_H
#include <stdint.h> #include <stdint.h>
#include <stddef.h>
#include "Configuration_var.h" #include "Configuration_var.h"
// Custom Mendel Name // Custom Mendel Name