diff options
author | bvernoux <bvernoux@gmail.com> | 2014-09-28 09:54:35 +0200 |
---|---|---|
committer | bvernoux <bvernoux@gmail.com> | 2014-09-28 09:54:35 +0200 |
commit | f6f248b46492a719cf302000d274f9c109eada30 (patch) | |
tree | 7dd912eb36228c28948808639be7d5e97aa99bfd /py/misc.h | |
parent | f90b59e61035c194470b7de589cfc3b44484b1fe (diff) |
Fix error: unknown type name 'size_t'
Diffstat (limited to 'py/misc.h')
-rw-r--r-- | py/misc.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -32,6 +32,7 @@ /** types *******************************************************/ #include <stdbool.h> +#include <stddef.h> typedef unsigned char byte; typedef unsigned int uint; |