mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 16:34:07 +00:00
11 lines
150 B
C
11 lines
150 B
C
/*
|
|
* Dummy routine for use with floating point stuff ...
|
|
*/
|
|
#include <portab.h>
|
|
DOUBLE atof();
|
|
DOUBLE _atof(buf)
|
|
BYTE *buf;
|
|
{
|
|
return(atof(buf));
|
|
}
|