aboutsummaryrefslogtreecommitdiff
path: root/src/backends/backendsCommon/test/TestSharedObject.hpp
blob: b2c515b1aa41be6bf13eb34690c4b1bd352f3f28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <cstdint>

// No name mangling
extern "C"
{
int TestFunction1(int i);
}

// C++ name mangling
extern int TestFunction2(int i);

// No external linkage
int TestFunction3(int i);