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:
parent
d44396f883
commit
372de7d08a
9 changed files with 149 additions and 149 deletions
|
@ -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__
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue