summaryrefslogtreecommitdiff
path: root/ACE/bin/LabVIEW_RT/labview_test_controller/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/bin/LabVIEW_RT/labview_test_controller/test.cpp')
-rw-r--r--ACE/bin/LabVIEW_RT/labview_test_controller/test.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/ACE/bin/LabVIEW_RT/labview_test_controller/test.cpp b/ACE/bin/LabVIEW_RT/labview_test_controller/test.cpp
deleted file mode 100644
index 4c2a2589fb4..00000000000
--- a/ACE/bin/LabVIEW_RT/labview_test_controller/test.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-// $Id$
-
-#include <stdio.h>
-__declspec(dllimport) int test_entry(void);
-
-// This is plain Windows code, not ACE. Therefore we disable
-// the check for ACE_OS
-// FUZZ: disable check_for_lack_ACE_OS
-
-int main (int, char *[])
-{
- char line[80];
- test_entry();
- puts ("Ok, go... hit return to stop.");
- gets (line);
- return 0;
-}