mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
526 B
19 lines
526 B
10 years ago
|
/*
|
||
|
**********************************************************************
|
||
|
* Copyright (C) 2014, International Business Machines
|
||
|
* Corporation and others. All Rights Reserved.
|
||
|
**********************************************************************
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
//
|
||
|
// ICU needs the C++, not the C linker to be used, even if the main function
|
||
|
// is in C.
|
||
|
//
|
||
|
// This is a dummy function just to get gyp to compile some internal
|
||
|
// tools as C++.
|
||
|
//
|
||
|
// It should not appear in production node binaries.
|
||
|
|
||
|
extern void icu_dummy_cxx() {}
|