aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/130 include order/sub1/some.h
blob: 6479492eadd239ae543a3299b4abdfad9f20de56 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#if defined _WIN32 || defined __CYGWIN__
  #define DLL_PUBLIC __declspec(dllimport)
#else
  #define DLL_PUBLIC
#endif

DLL_PUBLIC
int somefunc(void);