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:
parent
ad1e3cb12a
commit
9ae8beacc6
|
|
@ -12,6 +12,7 @@
|
|||
#define EEPROM_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
#include "Configuration_var.h"
|
||||
|
||||
// Custom Mendel Name
|
||||
|
|
|
|||
Loading…
Reference in New Issue