LUAI_MAXCCALLS
if (++L->nCcalls >= LUAI_MAXCCALLS) {
if (L->nCcalls == LUAI_MAXCCALLS)
else if (L->nCcalls >= (LUAI_MAXCCALLS + (LUAI_MAXCCALLS>>3)))
if (nCcalls >= LUAI_MAXCCALLS)
#if !defined(LUAI_MAXCCALLS)
checklimit(ls->fs, nvars + ls->L->nCcalls, LUAI_MAXCCALLS,
checklimit(ls->fs, L->nCcalls, LUAI_MAXCCALLS, "C levels");