| // Protocol Buffers - Google's data interchange format |
| // Copyright 2023 Google Inc. All rights reserved. |
| // |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file or at |
| // https://developers.google.com/open-source/licenses/bsd |
| // |
| #include <stdio.h> |
| #include <stdlib.h> |
| |
| // Must be included last |
| #include "google/protobuf/port_def.inc" |
| |
| namespace google { |
| namespace protobuf { |
| namespace internal { |
| |
| // protobuf_assumption_failed() is declared and used in port_def.inc to assert |
| // PROTOBUF_ASSUME conditions in debug mode. This function avoids having |
| // port_def.inc depend on assert.h or other headers, minimizing the compilation |
| // footprint. |
| void protobuf_assumption_failed(const char* pred, const char* file, int line) { |
| fprintf(stderr, "%s: %d: Assumption failed: '%s'\n", file, line, pred); |
| abort(); |
| } |
| |
| } // namespace internal |
| } // namespace protobuf |
| } // namespace google |