diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-15 21:53:22 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:25 +0200 |
commit | 3663803c5eea1169886146e8c4e7b64757ac7524 (patch) | |
tree | 31cc7af829ab360cce4a444e629e2bab5363ea1c /libc | |
parent | c9402c70bb51b3973a5ebbdcd39610e51b5eed66 (diff) |
stdio.h: update partially, mainly for POSIX 2008
Guard some UCLIBC specific parts.
Add comment about bits/getopt.h.
open_memstream.c: remove __restrict according to SuSv4.
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc')
-rw-r--r-- | libc/stdio/open_memstream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdio/open_memstream.c b/libc/stdio/open_memstream.c index 8b552c796..5400fe441 100644 --- a/libc/stdio/open_memstream.c +++ b/libc/stdio/open_memstream.c @@ -128,7 +128,7 @@ static const cookie_io_functions_t _oms_io_funcs = { * (ie replace the FILE buffer with the cookie buffer and update FILE bufstart, * etc. whenever we seek). */ -FILE *open_memstream(char **__restrict bufloc, size_t *__restrict sizeloc) +FILE *open_memstream(char **bufloc, size_t *sizeloc) { register __oms_cookie *cookie; register FILE *fp; |