aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/romload/syscalls.c
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/romload/syscalls.c')
-rw-r--r--scripts/romload/syscalls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/romload/syscalls.c b/scripts/romload/syscalls.c
index 82e633b..8ea84ca 100644
--- a/scripts/romload/syscalls.c
+++ b/scripts/romload/syscalls.c
@@ -77,7 +77,7 @@ int _fstat(int file, struct stat *st)
void *_sbrk(ptrdiff_t incr)
{
- extern unsigned char _end[]; // Defined by linker
+ extern unsigned char _end[]; // Defined by linker
static unsigned long heap_end;
if (heap_end == 0)