Welcome to mirror list, hosted at ThFree Co, Russian Federation.

no-op.cc « icu « tools - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08d1599a26423e015e9c36cf43c4cfcc96af6678 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
**********************************************************************
*   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() {}