#include "adefines.c" #include "aextern.c" /* */ /* starstar--computes x**n */ /* arithmetic--no problems if used only for factors */ /* of class numbers */ /* */ /* returns x**n */ /* */ starstar(x,n) int x,n; { int i,p; p = 1; for (i = 1; i <= n; ++i) p *= x; return(p); }