summaryrefslogtreecommitdiff
path: root/gdbserver/wincecompat.h
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@efficios.com>2020-06-12 16:06:45 -0400
committerSimon Marchi <simon.marchi@efficios.com>2020-06-12 16:06:45 -0400
commit84b300de3666ce1c86820a44f22ffd76eca04085 (patch)
treefbec53a5647667558fd627c53a9e01e1eda727bf /gdbserver/wincecompat.h
parent96c16e2b7f47c301912ac92f53b756e26ef44ffb (diff)
downloadbinutils-gdb-84b300de3666ce1c86820a44f22ffd76eca04085.tar.gz
gdbserver: remove support for ARM/WinCE
This port has been unmaintained for years, remove it. gdbserver/ChangeLog: * Makefile.in (SFILES): Remove win32-arm-low.cc, wincecompat.cc. * configure.srv: Remove mingw32ce cases. * server.h, win32-low.cc: Remove __MINGW32CE__-guarded code. * win32-low.h (to_back_slashes): Remove. * win32-arm-low.cc, wincecompat.cc, wincecompat.h: Remove. Change-Id: Ib75c0b55b0ab7caca38bbeff5f2fa9397a8e7e8d
Diffstat (limited to 'gdbserver/wincecompat.h')
-rw-r--r--gdbserver/wincecompat.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/gdbserver/wincecompat.h b/gdbserver/wincecompat.h
deleted file mode 100644
index 34705c3d66c..00000000000
--- a/gdbserver/wincecompat.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/* Compatibility routines for Windows CE.
- Copyright (C) 2007-2020 Free Software Foundation, Inc.
-
- This file is part of GDB.
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>. */
-
-#ifndef GDBSERVER_WINCECOMPAT_H
-#define GDBSERVER_WINCECOMPAT_H
-
-#include <windows.h>
-
-#define errno (GetLastError ())
-
-/* in win32-low.c */
-extern char * strwinerror (DWORD error);
-#define strerror strwinerror
-
-#endif /* GDBSERVER_WINCECOMPAT_H */