aboutsummaryrefslogtreecommitdiff
path: root/stdio-common
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common')
-rw-r--r--stdio-common/Versions19
-rw-r--r--stdio-common/test_rdwr.c2
2 files changed, 18 insertions, 3 deletions
diff --git a/stdio-common/Versions b/stdio-common/Versions
index 5db571d..d38ef7e 100644
--- a/stdio-common/Versions
+++ b/stdio-common/Versions
@@ -10,20 +10,35 @@ libc {
# variables in normal name space
sys_errlist; sys_nerr; sys_sigabbrev; sys_siglist;
+ # a*
+ asprintf;
+
# c*
ctermid; cuserid;
+ # d*
+ dprintf;
+
+ # f*
+ fprintf; fscanf;
+
+ # g*
+ getline; getw;
+
# p*
- parse_printf_format; perror;
+ parse_printf_format; perror; printf; putw;
# r*
register_printf_function; remove; rename;
+ # s*
+ scanf; snprintf; sprintf; sscanf;
+
# t*
tempnam; tmpfile; tmpnam; tmpnam_r;
# v*
- vfprintf; vfscanf;
+ vfprintf; vfscanf; vprintf;
}
GLIBC_2.1 {
# p*
diff --git a/stdio-common/test_rdwr.c b/stdio-common/test_rdwr.c
index e274dcc..a3b01b7 100644
--- a/stdio-common/test_rdwr.c
+++ b/stdio-common/test_rdwr.c
@@ -91,7 +91,7 @@ main (int argc, char **argv)
}
else if (where == -1L)
{
- printf ("ftell got %s (should be at %u).\n",
+ printf ("ftell got %s (should be at %Zu).\n",
strerror (errno), replace_from);
lose = 1;
}