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

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/utils/cygwin-console-helper.cc')
-rw-r--r--winsup/utils/cygwin-console-helper.cc13
1 files changed, 0 insertions, 13 deletions
diff --git a/winsup/utils/cygwin-console-helper.cc b/winsup/utils/cygwin-console-helper.cc
deleted file mode 100644
index 8f62ed7e6..000000000
--- a/winsup/utils/cygwin-console-helper.cc
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <windows.h>
-int
-main (int argc, char **argv)
-{
- char *end;
- if (argc != 3)
- exit (1);
- HANDLE h = (HANDLE) strtoul (argv[1], &end, 0);
- SetEvent (h);
- h = (HANDLE) strtoul (argv[2], &end, 0);
- WaitForSingleObject (h, INFINITE);
- exit (0);
-}