• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2013 Google Inc. All rights reserved.
3  * Use of this source code is governed by a BSD-style license that can be
4  * found in the LICENSE file.
5  */
6 
7 #ifdef _WIN32
8 __declspec(dllexport)
9 #endif
sharedLibFunc()10 int sharedLibFunc() {
11   /*
12    * This will fail to compile if TEST_DEFINE was not obtained from sharedlib's
13    * link_settings.
14    */
15   return TEST_DEFINE;
16 }
17