~ubuntu-branches/ubuntu/intrepid/ecl/intrepid

« back to all changes in this revision

Viewing changes to src/c/cfun.d

  • Committer: Bazaar Package Importer
  • Author(s): Peter Van Eynde
  • Date: 2006-07-02 00:20:00 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060702002000-8bn170vd0qpx7to8
Tags: 0.9i-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
        cf->cfun.name = name;
28
28
        cf->cfun.block = cblock;
29
29
        cf->cfun.narg = narg;
30
 
        if (narg < 0 || narg >= C_ARGUMENTS_LIMIT)
 
30
        if (narg < 0 || narg > C_ARGUMENTS_LIMIT)
31
31
            FEprogram_error("cl_make_cfun: function requires too many arguments.",0);
32
32
        return(cf);
33
33
}