257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
|
}
s = tcc_new();
if (s == NULL) {
return(TCL_ERROR);
}
s->tcc_lib_path = Tcl_GetString(objv[1]);
tcc_set_error_func(s, interp, (void *)&TccErrorFunc);
ts = (void *) ckalloc(sizeof(*ts));
ts->s = s;
ts->relocated = 0;
|
|
|
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
|
}
s = tcc_new();
if (s == NULL) {
return(TCL_ERROR);
}
s->tcc_lib_path = tcc_strdup(Tcl_GetString(objv[1]));
tcc_set_error_func(s, interp, (void *)&TccErrorFunc);
ts = (void *) ckalloc(sizeof(*ts));
ts->s = s;
ts->relocated = 0;
|