diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-02-01 11:58:12 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-02-01 11:58:12 +0000 |
commit | 1de7b5deae65d052672e409d5d4a99e05858896a (patch) | |
tree | 62a6f01914f8d009d4a96de778fdf5de137b8c02 /libc/sysdeps/linux/sh/brk.c | |
parent | 40f2d136165fc84a0cdccaa2d831eb5382b73403 (diff) |
missed two __curbrk
Diffstat (limited to 'libc/sysdeps/linux/sh/brk.c')
-rw-r--r-- | libc/sysdeps/linux/sh/brk.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/sh/brk.c b/libc/sysdeps/linux/sh/brk.c index 9af08c37d..9e33830ab 100644 --- a/libc/sysdeps/linux/sh/brk.c +++ b/libc/sysdeps/linux/sh/brk.c @@ -12,8 +12,10 @@ libc_hidden_proto(brk) extern void * __curbrk; +libc_hidden_proto(__curbrk) extern int __init_brk (void); +libc_hidden_proto(__init_brk) extern void *_brk(void *ptr) attribute_hidden; int brk(void * end_data_seg) |