summaryrefslogtreecommitdiffstats
path: root/pvrsrvinit/pvrsrvinit.c
diff options
context:
space:
mode:
Diffstat (limited to 'pvrsrvinit/pvrsrvinit.c')
-rw-r--r--pvrsrvinit/pvrsrvinit.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/pvrsrvinit/pvrsrvinit.c b/pvrsrvinit/pvrsrvinit.c
new file mode 100644
index 0000000..a177dd8
--- /dev/null
+++ b/pvrsrvinit/pvrsrvinit.c
@@ -0,0 +1,11 @@
+#include <stdlib.h>
+
+int SrvInit(int x);
+
+int main(int argc, char **argv)
+{
+
+ SrvInit(1);
+
+ return EXIT_SUCCESS;
+}