/*
 *  Copyright 2012 OpenSourceResearchInstitute.org
 *  Licensed under GNU General Public License version 2
 *
 * author seanhalle@yahoo.com
 */

#include <malloc.h>
#include <stdlib.h>

#include "VSs__Test_App/VSs__Test_App.h"

/*
 * 
 */
int main( int argc, char **argv )
 { 
   
   DEBUG__printf2(TRUE, "arguments: %s | %s", argv[0], argv[1] );
   
   VSs__Test_App( );
   
   exit(0); //cleans up
 }
