#ifndef __LOGISTIC_H__		/* To prevent redefinition	*/

#define ENTRY   extern
#define	LOCAL	static

ENTRY double logisticDF(double x, double a, double b);
ENTRY double inv_logisticDF(double q, double a, double b);

#define __LOGISTIC_H__		/* Prevents redefinition	*/
#endif				/* Ends #ifndef__LOGISTIC_H__	*/
