[libc][NFC] Remove useless header guards from implementation file
authorJoseph Huber <jhuber6@vols.utk.edu>
Tue, 28 Mar 2023 15:21:39 +0000 (10:21 -0500)
committerJoseph Huber <jhuber6@vols.utk.edu>
Tue, 28 Mar 2023 15:22:08 +0000 (10:22 -0500)
Summary:
These were accidentally added and don't do anything.

libc/src/__support/RPC/rpc_client.cpp

index 3e64fe5..8f71b65 100644 (file)
@@ -6,9 +6,6 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef LLVM_LIBC_SRC_SUPPORT_RPC_RPC_CLIENT_H
-#define LLVM_LIBC_SRC_SUPPORT_RPC_RPC_CLIENT_H
-
 #include "rpc.h"
 
 namespace __llvm_libc {
@@ -23,5 +20,3 @@ extern "C" [[gnu::visibility("protected")]] const bool __llvm_libc_rpc = false;
 
 } // namespace rpc
 } // namespace __llvm_libc
-
-#endif