mirror of https://github.com/status-im/xgo.git
15 lines
250 B
C
15 lines
250 B
C
|
// Go cross compiler (xgo): Test header for embedded C++ snippets.
|
||
|
// Copyright (c) 2015 Péter Szilágyi. All rights reserved.
|
||
|
//
|
||
|
// Released under the MIT license.
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void sayHi();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|