1) UCB code to scroll portion of screen with al/dl works only for fullscreen
[unix-history] / lib / libF77 / erf_.c
CommitLineData
547779a8
WH
1#include "f2c.h"
2
3#ifdef KR_headers
4double erf();
5double erf_(x) real *x;
6#else
7extern double erf(double);
8double erf_(real *x)
9#endif
10{
11return( erf(*x) );
12}