blob: eff7bb845ad64bacd3b645804579229003183e39 [file] [log] [blame]
/*-------------------------------------------------------------------------
*
* student.h
*
* Evaluate the Student-T distribution function.
*
*-------------------------------------------------------------------------
*/
#ifndef STUDENT_H
#define STUDENT_H
#include "postgres.h"
#include "fmgr.h"
extern float8 studentT_cdf(int64 /* nu */, float8 /* t */);
extern Datum student_t_cdf(PG_FUNCTION_ARGS);
#endif