aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/windows_dyld/dllfunc.c
diff options
context:
space:
mode:
Diffstat (limited to 'packages/Python/lldbsuite/test/functionalities/windows_dyld/dllfunc.c')
-rw-r--r--packages/Python/lldbsuite/test/functionalities/windows_dyld/dllfunc.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/packages/Python/lldbsuite/test/functionalities/windows_dyld/dllfunc.c b/packages/Python/lldbsuite/test/functionalities/windows_dyld/dllfunc.c
deleted file mode 100644
index aadf4e34a..000000000
--- a/packages/Python/lldbsuite/test/functionalities/windows_dyld/dllfunc.c
+++ /dev/null
@@ -1,19 +0,0 @@
-//===-- a.c -----------------------------------------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#include <windows.h>
-
-BOOL WINAPI DllMain(HINSTANCE h, DWORD reason, void* reserved) {
- return TRUE;
-}
-
-int __declspec(dllexport) DllFunc(int n) {
- int x = n * n;
- return x; // set breakpoint here
-}