summaryrefslogtreecommitdiff
path: root/py/misc.h
diff options
context:
space:
mode:
authorbvernoux <bvernoux@gmail.com>2014-09-28 09:54:35 +0200
committerbvernoux <bvernoux@gmail.com>2014-09-28 09:54:35 +0200
commitf6f248b46492a719cf302000d274f9c109eada30 (patch)
tree7dd912eb36228c28948808639be7d5e97aa99bfd /py/misc.h
parentf90b59e61035c194470b7de589cfc3b44484b1fe (diff)
Fix error: unknown type name 'size_t'
Diffstat (limited to 'py/misc.h')
-rw-r--r--py/misc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/misc.h b/py/misc.h
index 860215d62..d828998cf 100644
--- a/py/misc.h
+++ b/py/misc.h
@@ -32,6 +32,7 @@
/** types *******************************************************/
#include <stdbool.h>
+#include <stddef.h>
typedef unsigned char byte;
typedef unsigned int uint;