Browse Source

Merge pull request #878 from bvernoux/master

Fix error: unknown type name 'size_t'
pull/867/merge
Damien George 10 years ago
parent
commit
305c4d49be
  1. 1
      py/misc.h

1
py/misc.h

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

Loading…
Cancel
Save