Regenerated from source files

This commit is contained in:
Ulrich Drepper 2001-08-13 22:08:56 +00:00
parent 6f47f6457b
commit 1054384a8b
2 changed files with 782 additions and 697 deletions

View file

@ -1138,7 +1138,7 @@ call @code{readlink} again. Here is an example:
@smallexample
char *
readlink_malloc (char *filename)
readlink_malloc (const char *filename)
@{
int size = 100;
@ -1146,6 +1146,8 @@ readlink_malloc (char *filename)
@{
char *buffer = (char *) xmalloc (size);
int nchars = readlink (filename, buffer, size);
if (nchars < 0)
return NULL;
if (nchars < size)
return buffer;
free (buffer);

File diff suppressed because it is too large Load diff