blob: e6a859d60716fb910f5f4af736ce0783abd16c05 [file] [log] [blame]
Frederich Munchc1db8cf2017-04-27 16:55:24 +00001//===- llvm/unittest/Support/DynamicLibrary/PipSqueak.h -------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_PIPSQUEAK_H
11#define LLVM_PIPSQUEAK_H
12
13#ifdef _WIN32
14#define PIPSQUEAK_EXPORT __declspec(dllexport)
15#else
16#define PIPSQUEAK_EXPORT
17#endif
18
19#endif