summaryrefslogtreecommitdiff
path: root/deps/gyp/test/dependencies/sharedlib-linksettings/sharedlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/dependencies/sharedlib-linksettings/sharedlib.c')
-rw-r--r--deps/gyp/test/dependencies/sharedlib-linksettings/sharedlib.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/deps/gyp/test/dependencies/sharedlib-linksettings/sharedlib.c b/deps/gyp/test/dependencies/sharedlib-linksettings/sharedlib.c
deleted file mode 100644
index 3199bccd66..0000000000
--- a/deps/gyp/test/dependencies/sharedlib-linksettings/sharedlib.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
- * Copyright (c) 2013 Google Inc. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifdef _WIN32
-__declspec(dllexport)
-#endif
-int sharedLibFunc() {
- /*
- * This will fail to compile if TEST_DEFINE was not obtained from sharedlib's
- * link_settings.
- */
- return TEST_DEFINE;
-}