blob: 38f04080885c1203c6e468197fbf621bdcc676ef [file] [log] [blame]
// Copyright 2023 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stdint.h>
#include "suffixed-test-start.h"
// An .ifs file is generated for the dependency that defines `missing_dep_sym`
// (see //sdk/lib/ld/test/modules:missing-dep-dep-ifs). This module doesn't
// exist so we expect a missing module error.
extern "C" int64_t SUFFIXED_SYMBOL(missing_dep_sym)();
extern "C" int64_t SUFFIXED_SYMBOL(TestStart)() { return SUFFIXED_SYMBOL(missing_dep_sym)(); }