From d2d7a2b128e981740ee3a3c6e2859bec0202cb86 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Thu, 2 Jun 2022 16:10:37 +0200 Subject: Remove remaining support for WindowsCE -- --- common/t-stringhelp.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'common/t-stringhelp.c') 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 } } -- cgit