diff options
author | Jakub Jelinek <jakub@redhat.com> | 2006-09-29 20:49:06 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2006-09-29 20:49:06 +0000 |
commit | af47bc499af76c844b28d9ca912ed81f2a353708 (patch) | |
tree | 31ca20685bb989c345173126f498d79faa82a8d9 /libio | |
parent | 5ed9cc7c21189bab600d08763133a2b8fe90896d (diff) | |
download | glibc-af47bc499af76c844b28d9ca912ed81f2a353708.tar glibc-af47bc499af76c844b28d9ca912ed81f2a353708.tar.gz glibc-af47bc499af76c844b28d9ca912ed81f2a353708.tar.bz2 glibc-af47bc499af76c844b28d9ca912ed81f2a353708.zip |
Updated to fedora-glibc-20060929T2037cvs/fedora-glibc-2_5-1
Diffstat (limited to 'libio')
-rw-r--r-- | libio/stdio.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/libio/stdio.h b/libio/stdio.h index 80838d2997..c8fe52cf31 100644 --- a/libio/stdio.h +++ b/libio/stdio.h @@ -293,13 +293,7 @@ extern FILE *fmemopen (void *__s, size_t __len, __const char *__modes) __THROW; /* Open a stream that writes into a malloc'd buffer that is expanded as necessary. *BUFLOC and *SIZELOC are updated with the buffer's location and the number of characters written on fflush or fclose. */ -extern FILE *open_memstream (char **__restrict __bufloc, - size_t *__restrict __sizeloc) __THROW; - -/* Like OPEN_MEMSTREAM, but the stream is wide oriented and produces - a wide character string. */ -extern FILE *open_wmemstream (wchar_t **__restrict __bufloc, - size_t *__restrict __sizeloc) __THROW; +extern FILE *open_memstream (char **__bufloc, size_t *__sizeloc) __THROW; #endif |