1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-18 12:28:09 +00:00

fix(crypto): add missing header for size_t

This commit is contained in:
matejcik 2024-01-24 11:24:11 +01:00 committed by Jiří Musil
parent 63360a7417
commit ff26113083

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)