diff options
author | Raphael Isemann <teemperor@gmail.com> | 2021-05-26 12:19:37 +0200 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2021-05-26 12:46:12 +0200 |
commit | 76e47d4887f456878c0e2f20ebfae36267006cd7 (patch) | |
tree | eda2cb15f0f5c338c93794e9e3fa8098ada5a350 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp | |
parent | 21aec4fdc5de213a1009bc684adff988c290c6b3 (diff) | |
download | llvm-76e47d4887f456878c0e2f20ebfae36267006cd7.zip llvm-76e47d4887f456878c0e2f20ebfae36267006cd7.tar.gz llvm-76e47d4887f456878c0e2f20ebfae36267006cd7.tar.bz2 |
[lldb][NFC] Use C++ versions of the deprecated C standard library headers
The C headers are deprecated so as requested in D102845, this is replacing them
all with their (not deprecated) C++ equivalent.
Reviewed By: shafik
Differential Revision: https://reviews.llvm.org/D103084
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp index 78ee77f..5ea7b09 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp @@ -8,7 +8,7 @@ #include "GDBRemoteCommunicationServerCommon.h" -#include <errno.h> +#include <cerrno> #ifdef __APPLE__ #include <TargetConditionals.h> |