Remove out of order load lint warnings.

The copybara configuration has been broken by []

PiperOrigin-RevId: 621998904
Change-Id: I47e6b7b95bc9d8086547ae928065f67ac3f0006a
diff --git a/cc/defs.bzl b/cc/defs.bzl
index a3acac7..a141dbb 100644
--- a/cc/defs.bzl
+++ b/cc/defs.bzl
@@ -12,6 +12,8 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+load("//tools/build_defs/proto/cpp:cc_proto_library.bzl", "cc_proto_library")
+
 """Starlark rules for building C++ projects."""
 
 load("//cc/private/rules_impl:cc_flags_supplier.bzl", _cc_flags_supplier = "cc_flags_supplier")
@@ -104,7 +106,7 @@
     """
 
     # buildifier: disable=native-cc
-    native.cc_proto_library(**_add_tags(attrs))
+    cc_proto_library(**_add_tags(attrs))
 
 def fdo_prefetch_hints(**attrs):
     """Bazel fdo_prefetch_hints rule.