about summary refs log tree commit diff
path: root/libio
diff options
context:
space:
mode:
Diffstat (limited to 'libio')
-rw-r--r--libio/Versions27
-rw-r--r--libio/iofread_u.c1
-rw-r--r--libio/iofwrite_u.c1
3 files changed, 11 insertions, 18 deletions
diff --git a/libio/Versions b/libio/Versions
index e837abb5d7..83fc6ed540 100644
--- a/libio/Versions
+++ b/libio/Versions
@@ -43,48 +43,39 @@ libc {
     # variables in normal name space
     stderr; stdin; stdout;
 
-    # a*
-    asprintf;
-
     # c*
     clearerr; clearerr_unlocked;
 
-    # d*
-    dprintf;
-
     # f*
     fclose; fcloseall; fdopen; feof; feof_locked; feof_unlocked; ferror;
     ferror_locked; ferror_unlocked; fflush; fflush_locked; fflush_unlocked;
     fgetc; fgetpos; fgets; fileno; fileno_locked; fileno_unlocked; flockfile;
-    fopen; fopencookie; fprintf; fputc; fputc_locked; fputc_unlocked; fputs;
-    fread; freopen; fscanf; fseek; fsetpos; ftell; ftrylockfile; funlockfile;
+    fopen; fopencookie; fputc; fputc_locked; fputc_unlocked; fputs;
+    fread; freopen; fseek; fsetpos; ftell; ftrylockfile; funlockfile;
     fwrite;
 
     # g*
     getc; getc_locked; getc_unlocked; getchar; getchar_unlocked; getdelim;
-    getline; gets; getw;
+    gets;
 
     # o*
-    obstack_printf; obstack_vprintf; open_memstream;
+    open_memstream; open_obstack_stream; obstack_printf; obstack_vprintf;
 
     # p*
-    pclose; popen; printf; putc; putc_locked; putc_unlocked; putchar;
+    pclose; popen; putc; putc_locked; putc_unlocked; putchar;
     putchar_unlocked; puts;
 
-    # p*
-    putw; rewind;
-
-    # s*
-    scanf; setbuf; setbuffer; setlinebuf;
+    # r*
+    rewind;
 
     # s*
-    setvbuf; snprintf; sprintf; sscanf;
+    setbuf; setbuffer; setlinebuf; setvbuf;
 
     # u*
     ungetc;
 
     # v*
-    vasprintf; vdprintf; vprintf; vscanf; vsnprintf; vsprintf; vsscanf;
+    vasprintf; vdprintf; vscanf; vsnprintf; vsprintf; vsscanf;
   }
   GLIBC_2.1 {
     # global variables
diff --git a/libio/iofread_u.c b/libio/iofread_u.c
index bd7ceaf379..69627165eb 100644
--- a/libio/iofread_u.c
+++ b/libio/iofread_u.c
@@ -24,6 +24,7 @@
    General Public License.  */
 
 #include "libioP.h"
+#include <stdio.h>
 
 _IO_size_t
 fread_unlocked (buf, size, count, fp)
diff --git a/libio/iofwrite_u.c b/libio/iofwrite_u.c
index 7d1d24b758..3ffc9bff2b 100644
--- a/libio/iofwrite_u.c
+++ b/libio/iofwrite_u.c
@@ -24,6 +24,7 @@
    General Public License.  */
 
 #include "libioP.h"
+#include <stdio.h>
 
 _IO_size_t
 fwrite_unlocked (buf, size, count, fp)