Merge pull request #878 from bvernoux/master

Fix error: unknown type name 'size_t'
This commit is contained in:
Damien George 2014-09-29 12:22:16 +01:00
commit 305c4d49be

View File

@ -32,6 +32,7 @@
/** types *******************************************************/ /** types *******************************************************/
#include <stdbool.h> #include <stdbool.h>
#include <stddef.h>
typedef unsigned char byte; typedef unsigned char byte;
typedef unsigned int uint; typedef unsigned int uint;