1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-08-01 11:28:20 +00:00

fix(crypto): add missing header for size_t

This commit is contained in:
matejcik 2024-01-24 11:24:11 +01:00
parent 6d0e1bc919
commit 8b3fbf6469

View File

@ -1,6 +1,8 @@
#ifndef ED25519_H #ifndef ED25519_H
#define ED25519_H #define ED25519_H
#include <stddef.h>
#include "options.h" #include "options.h"
#if defined(__cplusplus) #if defined(__cplusplus)