diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2014-08-05 22:19:43 -0400 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2014-08-05 22:20:28 -0400 |
| commit | e7e302f2559ec2c8878e5b5205755900215196b3 (patch) | |
| tree | e555553a50e3b47bf967015316af428895bd4840 | |
| parent | 0615cb8042b5bc381288b1eb99fdfdda21f5dfeb (diff) | |
| download | rockbox-e7e302f2559ec2c8878e5b5205755900215196b3.zip rockbox-e7e302f2559ec2c8878e5b5205755900215196b3.tar.gz rockbox-e7e302f2559ec2c8878e5b5205755900215196b3.tar.bz2 rockbox-e7e302f2559ec2c8878e5b5205755900215196b3.tar.xz | |
One more shot; errno.h needs to be in the ARM one too :)
Change-Id: Icf5e5fb269c975eaaefc6e756f46d4530b982b1f
| -rw-r--r-- | firmware/asm/arm/thread.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/asm/arm/thread.h b/firmware/asm/arm/thread.h index ec9bbcb..7b8ebc2 100644 --- a/firmware/asm/arm/thread.h +++ b/firmware/asm/arm/thread.h @@ -30,6 +30,7 @@ struct regs }; #if (CONFIG_PLATFORM & PLATFORM_HOSTED) + #include <errno.h> #define DEFAULT_STACK_SIZE 0x1000 /* Bytes */ #else #define DEFAULT_STACK_SIZE 0x400 /* Bytes */ |