2017-06-30 Richard Biener <rguenther@suse.de>
[official-gcc.git] / libgo / misc / cgo / testsovar / cgoso_c.h
blob640db7b396a1cc8e832baeafa7327b43545fd8e7
1 // Copyright 2015 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // +build ignore
7 #ifdef WIN32
8 #if defined(EXPORT_DLL)
9 # define VAR __declspec(dllexport)
10 #elif defined(IMPORT_DLL)
11 # define VAR __declspec(dllimport)
12 #endif
13 #else
14 # define VAR extern
15 #endif
17 VAR const char *exported_var;