/* ---------------------------------------------------------------------- */

#define ns__aproc0 "::aproc"
static int c__aproc0()
{
return 0;
}

static int
tcl__aproc0(ClientData cd, Tcl_Interp *interp, Tcl_Size oc, Tcl_Obj *CONST ov[])
{
  int rv;
  if (oc != 1) {
    Tcl_WrongNumArgs(interp, 1, ov, NULL);
    return TCL_ERROR;
  }

  /* Call - - -- --- ----- -------- */
  rv = c__aproc0();

  /* (int return) - - -- --- ----- -------- */
	Tcl_SetObjResult(interp, Tcl_NewIntObj(rv));
	return TCL_OK;
}
