aboutsummaryrefslogtreecommitdiff
path: root/manual/filesys.texi
diff options
context:
space:
mode:
Diffstat (limited to 'manual/filesys.texi')
-rw-r--r--manual/filesys.texi11
1 files changed, 6 insertions, 5 deletions
diff --git a/manual/filesys.texi b/manual/filesys.texi
index e2c9ffb432..0f27cfcfd9 100644
--- a/manual/filesys.texi
+++ b/manual/filesys.texi
@@ -91,17 +91,18 @@ using only the standard behavior of @code{getcwd}:
@smallexample
char *
-gnu_getcwd (size_t size)
+gnu_getcwd ()
@{
+ size_t size = 100;
+
while (1)
@{
char *buffer = (char *) xmalloc (size);
- char *value = getcwd (buffer, size);
- if (value == buffer)
- return value;
+ if (getcwd (buffer, size) == buffer)
+ return buffer;
free (buffer);
if (errno != ERANGE)
- return value;
+ return 0;
size *= 2;
@}
@}