aboutsummaryrefslogtreecommitdiff
path: root/freerdp2-session-wrapper.c
diff options
context:
space:
mode:
Diffstat (limited to 'freerdp2-session-wrapper.c')
-rw-r--r--freerdp2-session-wrapper.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/freerdp2-session-wrapper.c b/freerdp2-session-wrapper.c
deleted file mode 100644
index 7b5c320..0000000
--- a/freerdp2-session-wrapper.c
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Copyright © 2012 Canonical Ltd.
- *
- * This program is free software: you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 3, as
- * published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranties of
- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
- * PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * Author: Ted Gould <ted@canonical.com>
- */
-
-#include <stdlib.h>
-#include <unistd.h>
-
-int
-main (int __attribute__((unused)) argc, char __attribute__((unused)) *argv[])
-{
- char * args[2];
- args[0] = PKGDATADIR "/freerdp2-session";
- args[1] = NULL;
-
- execvp(args[0], args);
-
- return 0;
-}