diff options
author | Werner Koch <[email protected]> | 2022-06-02 14:10:37 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2022-06-03 08:08:21 +0000 |
commit | d2d7a2b128e981740ee3a3c6e2859bec0202cb86 (patch) | |
tree | e4e8e62681ca9ae4cb678c0a9ac85d2b25ebd7a9 /common/t-stringhelp.c | |
parent | tools: Minor fix to gpg-connect-agent options. (diff) | |
download | gnupg-d2d7a2b128e981740ee3a3c6e2859bec0202cb86.tar.gz gnupg-d2d7a2b128e981740ee3a3c6e2859bec0202cb86.zip |
Remove remaining support for WindowsCE
--
Diffstat (limited to 'common/t-stringhelp.c')
-rw-r--r-- | common/t-stringhelp.c | 5 |
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 } } |