/*Copyright (C) 1992, 1994 by Thomas Glen Smith. All Rights Reserved.*/ /* binom APL2 V1.0.0 *************************************************** * binomial. * ***********************************************************************/ #define INCLUDES 0 #include "includes.h" double binom(a,b) double a,b; { Binomp; double r; binomp(&a,&b,&r); return(r); }