libc: Redefine int32_t/uint32_t as 'int' not 'long'

libc built from projectgus/newlib-xtensa@0077776963

Closes #42
This commit is contained in:
Angus Gratton 2015-09-05 12:54:09 +10:00
parent 920ee8bf85
commit 7ed064a750
10 changed files with 18 additions and 186 deletions

View file

@ -25,7 +25,7 @@ void task2(void *pvParameters)
while(1) {
uint32_t count;
if(xQueueReceive(*queue, &count, 1000)) {
printf("Got %lu\n", count);
printf("Got %u\n", count);
} else {
printf("No msg :(\n");
}