diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-10-06 15:39:29 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-10-06 15:39:29 +0000 |
commit | 3a4e060900bc27f204c20f4102874d7e11eb3cdc (patch) | |
tree | 0049c456782f28f64519ecb1b158ebbeb716927e /manual | |
parent | 2e4f1cfb1f3fc72ec4195678350256f85cb4d284 (diff) | |
download | glibc-3a4e060900bc27f204c20f4102874d7e11eb3cdc.tar.gz glibc-3a4e060900bc27f204c20f4102874d7e11eb3cdc.tar.xz glibc-3a4e060900bc27f204c20f4102874d7e11eb3cdc.zip |
* include/features.h (__GLIBC_MINOR__): It's glibc 2.5 now. cvs/glibc-2_5-base
2006-10-06 Ulrich Drepper <drepper@redhat.com> * po/pl.po: Update from translation team. * nscd/nscd.c (main): Fix typo in message. Patch by Jakub Bogsz <qboosh@pld-linux.org>.
Diffstat (limited to 'manual')
-rw-r--r-- | manual/stdio.texi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/manual/stdio.texi b/manual/stdio.texi index c471209134..977989d95e 100644 --- a/manual/stdio.texi +++ b/manual/stdio.texi @@ -2393,8 +2393,9 @@ This function is similar to @code{sprintf}, except that it dynamically allocates a string (as with @code{malloc}; @pxref{Unconstrained Allocation}) to hold the output, instead of putting the output in a buffer you allocate in advance. The @var{ptr} argument should be the -address of a @code{char *} object, and @code{asprintf} stores a pointer -to the newly allocated string at that location. +address of a @code{char *} object, and a successful call to +@code{asprintf} stores a pointer to the newly allocated string at that +location. The return value is the number of characters allocated for the buffer, or less than zero if an error occurred. Usually this means that the buffer |