~mmach/netext73/meson

« back to all changes in this revision

Viewing changes to test cases/common/134 include order/sub1/some.h

  • Committer: mmach
  • Date: 2020-04-09 10:35:04 UTC
  • Revision ID: netbit73@gmail.com-20200409103504-wkxbh6yl5fzlueas
0.53.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#pragma once
 
2
 
 
3
#if defined _WIN32 || defined __CYGWIN__
 
4
  #define DLL_PUBLIC __declspec(dllimport)
 
5
#else
 
6
  #define DLL_PUBLIC
 
7
#endif
 
8
 
 
9
DLL_PUBLIC
 
10
int somefunc(void);