aboutsummaryrefslogtreecommitdiffstats
path: root/common/t-stringhelp.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/t-stringhelp.c')
-rw-r--r--common/t-stringhelp.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/common/t-stringhelp.c b/common/t-stringhelp.c
index 4086f8c3d..6723d65b6 100644
--- a/common/t-stringhelp.c
+++ b/common/t-stringhelp.c
@@ -83,10 +83,6 @@ mygetcwd (void)
for (;;)
{
buffer = xmalloc (size+1);
-#ifdef HAVE_W32CE_SYSTEM
- strcpy (buffer, "/"); /* Always "/". */
- return buffer;
-#else
if (getcwd (buffer, size) == buffer)
{
#ifdef HAVE_W32_SYSTEM
@@ -105,7 +101,6 @@ mygetcwd (void)
exit (2);
}
size *= 2;
-#endif
}
}