view main.c @ 2:a8a8c4193c9b

Close to final version -- getting there
author Some Random Person <seanhalle@yahoo.com>
date Thu, 24 May 2012 07:59:38 -0700
parents 9cf4c84a3091
children 6643a6f47050
line source
1 /*
2 * Copyright 20012 OpenSourceResearchInstitute.org
3 * Licensed under GNU General Public License version 2
4 *
5 * author seanhalle@yahoo.com
6 */
8 #include <malloc.h>
9 #include <stdlib.h>
11 #include "VSs__Hello_World/VSs__Hello_World.h"
13 /**
14 *
15 */
16 int main( int argc, char **argv )
17 {
19 DEBUG__printf2(TRUE, "arguments: %s | %s", argv[0], argv[1] );
21 VSs__Hello_World( );
23 exit(0); //cleans up
24 }