aboutsummaryrefslogtreecommitdiffhomepage
path: root/pyecsca/codegen/fat.h
diff options
context:
space:
mode:
authorJ08nY2020-02-26 14:28:52 +0100
committerJ08nY2020-02-26 14:28:52 +0100
commitf78ff987ac2df62dbd8326ce33ae61c97673710e (patch)
tree9b63026e223254bc3c4e6af164bd3ae3bdcc0404 /pyecsca/codegen/fat.h
parent3892d994470b181f950703fabf719a9c963d1c20 (diff)
downloadpyecsca-codegen-f78ff987ac2df62dbd8326ce33ae61c97673710e.tar.gz
pyecsca-codegen-f78ff987ac2df62dbd8326ce33ae61c97673710e.tar.zst
pyecsca-codegen-f78ff987ac2df62dbd8326ce33ae61c97673710e.zip
Get stuff to work on STM32F0.
Diffstat (limited to 'pyecsca/codegen/fat.h')
-rw-r--r--pyecsca/codegen/fat.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/pyecsca/codegen/fat.h b/pyecsca/codegen/fat.h
index b1c094b..0032c91 100644
--- a/pyecsca/codegen/fat.h
+++ b/pyecsca/codegen/fat.h
@@ -1,8 +1,10 @@
#ifndef FAT_H_
#define FAT_H_
+#include <stdlib.h>
+
typedef struct {
- size_t len;
+ uint32_t len;
void *value;
} fat_t;