Diff

Differences From Artifact [adc8789527]:

To Artifact [f0d4d5a170]:



1
2
3
4
5
6
7
8
9
10
11
12
13


#include <tcl.h>

int TclKit_AppInit(Tcl_Interp *interp);

int main(int argc, char **argv) {
	Tcl_Interp *x;

	x = Tcl_CreateInterp();

	Tcl_Main(argc, argv, TclKit_AppInit);

	return(0);
}

>













>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef KITSH_NEED_WINMAIN
#include <tcl.h>

int TclKit_AppInit(Tcl_Interp *interp);

int main(int argc, char **argv) {
	Tcl_Interp *x;

	x = Tcl_CreateInterp();

	Tcl_Main(argc, argv, TclKit_AppInit);

	return(0);
}
#endif