summaryrefslogtreecommitdiff
path: root/linux-user/syscall.c
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-04-23 18:25:41 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-04-23 18:25:41 +0000
commita4f81979e8c82ea8fb9f3c96692b9c58c8e88e5a (patch)
treed7a0f82647ef2a6ed3c56e29d71722f5ada72022 /linux-user/syscall.c
parent89344d5ad7751010874300ff2b25953edcd6d3cb (diff)
downloadqemu-a4f81979e8c82ea8fb9f3c96692b9c58c8e88e5a.zip
ARM "Angel" semihosting syscalls (Paul Brook)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1383 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/syscall.c')
-rw-r--r--linux-user/syscall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index d69b21e6f6..b00ce90cbf 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -264,7 +264,7 @@ void target_set_brk(char *new_brk)
target_original_brk = new_brk;
}
-static long do_brk(char *new_brk)
+long do_brk(char *new_brk)
{
char *brk_page;
long mapped_addr;