diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-18 01:10:26 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-18 01:10:26 +0000 |
commit | 933df87e4e9a8d7f6901dd0417b0006c5b132439 (patch) | |
tree | b5ef20e5b2c3d151fd4de60d4e27ebedc00c82d0 /include/stdio.h | |
parent | e8c6de1939e1f8a2898a0e53134fa175560b9469 (diff) |
libc_hidden_proto removal, a few more functions
Diffstat (limited to 'include/stdio.h')
-rw-r--r-- | include/stdio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/stdio.h b/include/stdio.h index f14016aa1..feb544de7 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -197,6 +197,7 @@ __BEGIN_NAMESPACE_STD This function is a possible cancellation point and therefore not marked with __THROW. */ extern int fclose (FILE *__stream); +libc_hidden_proto(fclose) /* Flush STREAM, or all streams if STREAM is NULL. This function is a possible cancellation point and therefore not @@ -318,6 +319,7 @@ __BEGIN_NAMESPACE_STD marked with __THROW. */ extern int fprintf (FILE *__restrict __stream, __const char *__restrict __format, ...); +libc_hidden_proto(fprintf) /* Write formatted output to stdout. This function is a possible cancellation point and therefore not |