summary refs log tree commit diff
path: root/stdio-common/getline.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common/getline.c')
-rw-r--r--stdio-common/getline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/getline.c b/stdio-common/getline.c
index de212243bb..52dfc58f2b 100644
--- a/stdio-common/getline.c
+++ b/stdio-common/getline.c
@@ -25,7 +25,7 @@
 ssize_t
 __getline (char **lineptr, size_t *n, FILE *stream)
 {
-  return _IO_getdelim (lineptr, n, '\n', stream);
+  return __getdelim (lineptr, n, '\n', stream);
 }
 
 weak_alias (__getline, getline)