diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-09-24 16:15:28 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-09-24 16:15:28 +0000 |
commit | dd4c03d796f73e008d93ade62655deb70aaaf34a (patch) | |
tree | 381f07ac566718afc00cde9a5470ad8bf16625e4 /libc/stdio/getdelim.c | |
parent | 0f82408c13d9e8be9dd022b0c21411fe86693f67 (diff) | |
download | uClibc-alpine-dd4c03d796f73e008d93ade62655deb70aaaf34a.tar.bz2 uClibc-alpine-dd4c03d796f73e008d93ade62655deb70aaaf34a.tar.xz |
Big sync with trunk.
Diffstat (limited to 'libc/stdio/getdelim.c')
-rw-r--r-- | libc/stdio/getdelim.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdio/getdelim.c b/libc/stdio/getdelim.c index fe388ee11..cf3cf4c10 100644 --- a/libc/stdio/getdelim.c +++ b/libc/stdio/getdelim.c @@ -18,8 +18,6 @@ * a reading. So space may be allocated even if initially at EOF. */ -weak_alias(__getdelim,getdelim); - #define GETDELIM_GROWBY 64 ssize_t __getdelim(char **__restrict lineptr, size_t *__restrict n, @@ -75,3 +73,5 @@ ssize_t __getdelim(char **__restrict lineptr, size_t *__restrict n, return pos; } + +weak_alias(__getdelim,getdelim); |