xref: /llvm-project/llvm/unittests/Support/DynamicLibrary/ExportedFuncs.cpp (revision 2946cd701067404b99c39fb29dc9c74bd7193eb3)
18a953299SNico Weber //===- llvm/unittest/Support/DynamicLibrary/ExportedFuncs.cpp -------------===//
28a953299SNico Weber //
3*2946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*2946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
5*2946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
68a953299SNico Weber //
78a953299SNico Weber //===----------------------------------------------------------------------===//
88a953299SNico Weber 
98a953299SNico Weber #include "PipSqueak.h"
108a953299SNico Weber 
118a953299SNico Weber #ifndef PIPSQUEAK_TESTA_RETURN
128a953299SNico Weber #define PIPSQUEAK_TESTA_RETURN "ProcessCall"
138a953299SNico Weber #endif
148a953299SNico Weber 
TestA()158a953299SNico Weber extern "C" PIPSQUEAK_EXPORT const char *TestA() { return PIPSQUEAK_TESTA_RETURN; }
16