/*
Pilot Native stubs with gcc - V3
Function names are those used by gcc whn generating code for double stuff
Currently in development.

Copyright (C) Aug 1998 François Pessaux (francois.pessaux@inria.fr)

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*/

/* String <-> double management */
double GccSysFlpAToF (char*) ;
void GccSysFlpFToA (double, Char*) ;

/* Arithmetic operators */
double __adddf3 (double, double) ;
double __subdf3 (double, double) ;
double __muldf3 (double, double) ;
double __divdf3 (double, double) ;

/* Casts */
SDWord __fixdfsi (double d) ;
double __floatsidf (SDWord) ;

/* Comparisions */
SDWord __eqdf2 (double, double) ;
SDWord __nedf2 (double, double) ;
SDWord __ltdf2 (double, double) ;
SDWord __ledf2 (double, double) ;
SDWord __gtdf2 (double, double) ;
SDWord __gedf2 (double, double) ;
