OSDN Git Service

hidden_def/hidden_proto: convert all users (I hope) termios split, add some missing...
[uclinux-h8/uClibc.git] / libc / stdio / getline.c
index 943526a..0426d37 100644 (file)
@@ -5,13 +5,14 @@
  * Dedicated to Toni.  See uClibc/DEDICATION.mjn3 for details.
  */
 
-#define getdelim __getdelim
-
 #include "_stdio.h"
 
-ssize_t attribute_hidden __getline(char **__restrict lineptr, size_t *__restrict n,
+libc_hidden_proto(getdelim)
+
+ssize_t getline(char **__restrict lineptr, size_t *__restrict n,
                                FILE *__restrict stream)
 {
        return getdelim(lineptr, n, '\n', stream);
 }
-strong_alias(__getline,getline)
+libc_hidden_proto(getline)
+libc_hidden_def(getline)