Diff

Differences From Artifact [f0d4d5a170]:

To Artifact [cac11ec6a8]:


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

13

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

14
15
16












+
-
+


#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);

	/* If Tcl_Main() returns, something went wrong */
	return(0);
	return(1);
}
#endif