mirror of
https://github.com/status-im/xgo.git
synced 2025-01-15 13:25:04 +00:00
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
|