Converted u8_t to uint8_t and u16_t to uint16_t in the rest of core (specifically ctk/vnc, slip and the loader code)

This commit is contained in:
Nicholas J Humfrey 2012-02-19 14:29:59 +00:00 committed by Mariano Alvira
parent d44396f883
commit 372de7d08a
9 changed files with 149 additions and 149 deletions

View file

@ -37,9 +37,9 @@
*/
/* These typedefs limits object file size! */
typedef u16_t cle_off; /* Offset from start of file. */
typedef u16_t cle_word;
typedef u16_t cle_half;
typedef uint16_t cle_off; /* Offset from start of file. */
typedef uint16_t cle_word;
typedef uint16_t cle_half;
/* Also used for address arithmetic (can't be void *). */
#ifdef __AVR__