summaryrefslogtreecommitdiff
path: root/src/entry/sapp_main.c
blob: 55dc4735326773b1d5ad361e44a34a409528ae77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include "sapp_api.h"
#include "sapp_private_api.h"

#ifdef __cplusplus
extern "C" {
#endif



int main(int argc, char *argv[])
{	
	if(libsapp_setup_env(argc,argv) < 0){
		return -1;
	}
	
	while(1){
		pause();
	}

	return 0;
}


#ifdef __cplusplus
}
#endif