diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-04-09 04:11:12 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-04-09 04:13:21 +0300 |
commit | 03b9ad7b014bf5a6e305939ce5606c3dcd91a852 (patch) | |
tree | 300cdccb834702fcb6dbab3f375286f6b42b628d /py | |
parent | 229347139bfd83eca0d5b0361b95ccf83a102c53 (diff) | |
download | micropython-03b9ad7b014bf5a6e305939ce5606c3dcd91a852.tar.gz micropython-03b9ad7b014bf5a6e305939ce5606c3dcd91a852.zip |
gc.c: Remove superfluous typedef (bute defined in misc.h).
Diffstat (limited to 'py')
-rw-r--r-- | py/gc.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -20,8 +20,6 @@ #define DEBUG_printf(...) (void)0 #endif -typedef unsigned char byte; - #define WORDS_PER_BLOCK (4) #define BYTES_PER_BLOCK (WORDS_PER_BLOCK * BYTES_PER_WORD) #define STACK_SIZE (64) // tunable; minimum is 1 |