mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 08:24:18 +00:00
13 lines
365 B
C
13 lines
365 B
C
/* NOFLOAT: provides 'stubroutines' to satisfy floating point library */
|
|
/* references from 'printf' et al. */
|
|
|
|
|
|
nofloat() { ; } /* stubroutine 'tag' */
|
|
|
|
char * __nofloat_msg = "floating point";
|
|
|
|
_petoa() { _optoff(__nofloat_msg); }
|
|
_pftoa() { _optoff(__nofloat_msg); }
|
|
_pgtoa() { _optoff(__nofloat_msg); }
|
|
_atof() { _optoff(__nofloat_mst); }
|