This commit is contained in:
@ -45,14 +45,14 @@ ase_awk_t* ase_awk_openstd (void)
|
||||
ase_awk_t* awk;
|
||||
ext_t* ext;
|
||||
|
||||
awk = ase_awk_open (ASE_MMGR_GET(), ASE_SIZEOF(ext_t), ASE_NULL);
|
||||
awk = ase_awk_open (ASE_NULL, ASE_SIZEOF(ext_t), ASE_NULL);
|
||||
ase_awk_setccls (awk, ASE_GETCCLS());
|
||||
|
||||
ext = (ext_t*) ase_awk_getextension (awk);
|
||||
ext->prmfns.pow = custom_awk_pow;
|
||||
ext->prmfns.sprintf = custom_awk_sprintf;
|
||||
ext->prmfns.dprintf = custom_awk_dprintf;
|
||||
ext->prmfns.custom_data = ASE_NULL;
|
||||
ext->prmfns.pow = custom_awk_pow;
|
||||
ext->prmfns.sprintf = custom_awk_sprintf;
|
||||
ext->prmfns.dprintf = custom_awk_dprintf;
|
||||
ext->prmfns.data = ASE_NULL;
|
||||
ase_awk_setprmfns (awk, &ext->prmfns);
|
||||
|
||||
ase_awk_setoption (awk,
|
||||
|
Reference in New Issue
Block a user