ftp.nice.ch/pub/next/unix/audio/cmusic.bs.N.tar.gz#/src/lib/libran/expn.c

This is expn.c in view mode; [Download] [Up]

#include <math.h>

double expn(rfun, delta)
	double (*rfun)();
	double delta;
{
	register double rtn; 

	rtn = -log((*rfun)(0.0, 1.0)) / delta;

	return(rtn);
	}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.