commit | f6f248b46492a719cf302000d274f9c109eada30 | [log] [tgz] |
---|---|---|
author | bvernoux <bvernoux@gmail.com> | Sun Sep 28 09:54:35 2014 +0200 |
committer | bvernoux <bvernoux@gmail.com> | Sun Sep 28 09:54:35 2014 +0200 |
tree | 7dd912eb36228c28948808639be7d5e97aa99bfd | |
parent | f90b59e61035c194470b7de589cfc3b44484b1fe [diff] [blame] |
Fix error: unknown type name 'size_t'
diff --git a/py/misc.h b/py/misc.h index 860215d..d828998 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;