xgo/tests/embedded_cpp/snippet.h

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