chromium/base/test/immediate_crash_test_helper.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/immediate_crash.h"  // nogncheck

#if defined(WIN32)
#define IMMEDIATE_CRASH_TEST_HELPER_EXPORT
#else  // defined(WIN32)
#define IMMEDIATE_CRASH_TEST_HELPER_EXPORT
#endif  // defined(WIN32)

extern "C" {

IMMEDIATE_CRASH_TEST_HELPER_EXPORT int TestFunction1(int x, int y) {}

IMMEDIATE_CRASH_TEST_HELPER_EXPORT int TestFunction2(int x, int y) {}

}  // extern "C"