summaryrefslogtreecommitdiff
path: root/src/user/lib/fwik/main.cpp
blob: 8e2e289b3ab9cf434611bbadf1358f5b8fa24486 (plain) (blame)
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
28
29
30
#include <IO/IOStream.h>
#include <stdio.h>
#include <cpp.h>

IOStream stdio;

int Main(char **args);	// FWIK app main

extern "C" int main(char **args) {
	stdio.term = 0;

	Node zero(libc::term);
	if (zero.info.type & FT_TERMINAL) {
		stdio.term = new Term(zero);
	}
	Main(args);
}


// C++ support

//Enables pure virtual functions
extern "C" void __cxa_pure_virtual() {
	//do nothing
}
//Enables global objects
void *__dso_handle;
extern "C" int __cxa_atexit(void (*f)(void*), void *p, void *d) { return 0; }