new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / win32 / service-start.c
diff --git a/src/win32/service-start.c b/src/win32/service-start.c
deleted file mode 100644 (file)
index 057f142..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-/* @(#) $Id: ./src/win32/service-start.c, 2011/09/08 dcid Exp $
- */
-
-/* Copyright (C) 2009 Trend Micro Inc.
- * All rights reserved.
- *
- * This program is a free software; you can redistribute it
- * and/or modify it under the terms of the GNU General Public
- * License (version 2) as published by the FSF - Free Software
- * Foundation
- */
-
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <unistd.h>
-
-
-/* Setup windows after install */
-int main(int argc, char **argv)
-{
-    printf("%s: Attempting to start ossec.", argv[0]);
-
-    system("net start OssecSvc");
-
-    system("pause");
-    return(0);
-}