OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2011 The Native Client Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 #include "native_client/src/untrusted/nacl/syscall_bindings_trampoline.h" | 7 #include "native_client/src/untrusted/nacl/syscall_bindings_trampoline.h" |
8 | 8 |
9 void *sysbrk(void *new_break) { | 9 void *sysbrk(void *new_break) { |
10 return NACL_SYSCALL(sysbrk)(new_break); | 10 return NACL_SYSCALL(brk)(new_break); |
11 } | 11 } |
OLD | NEW |