Ignore:
Timestamp:
Jan 8, 2000, 3:24:04 PM (26 years ago)
Author:
sandervl
Message:

Fixed many register based floating point exports

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/crtdll/crtdll.cpp

    r2364 r2372  
    1 /* $Id: crtdll.cpp,v 1.20 2000-01-08 12:07:45 sandervl Exp $ */
     1/* $Id: crtdll.cpp,v 1.21 2000-01-08 14:24:04 sandervl Exp $ */
    22
    33/*
     
    113113}
    114114
    115 
    116 /*********************************************************************
    117  *                  _CIacos    (CRTDLL.004)
    118  */
    119 double CDECL CRTDLL__CIacos(double x)
    120 {
    121   dprintf2(("CRTDLL: _CIacos\n"));
    122   dprintf2(("should be register function\n"));
    123   return acos(x);
    124 }
    125 
    126 
    127 /*********************************************************************
    128  *                  _CIasin    (CRTDLL.005)
    129  */
    130 double CDECL CRTDLL__CIasin( double x )
    131 {
    132   dprintf2(("CRTDLL: _CIasin\n"));
    133   dprintf2(("should be register function\n"));
    134   return asin(x);
    135 }
    136 
    137 
    138 /*********************************************************************
    139  *                  _CIatan    (CRTDLL.006)
    140  */
    141 double CDECL CRTDLL__CIatan( double x )
    142 {
    143   dprintf2(("CRTDLL: _CIatan\n"));
    144   dprintf2(("should be register function\n"));
    145   return atan(x);
    146 }
    147 
    148 
    149 /*********************************************************************
    150  *                  _CIatan2    (CRTDLL.007)
    151  */
    152 double CDECL CRTDLL__CIatan2( double x, double y )
    153 {
    154   dprintf2(("CRTDLL: _CIatan2\n"));
    155   dprintf2(("should be register function\n"));
    156   return atan2(x,y);
    157 }
    158 
    159 
    160 /*********************************************************************
    161  *                  _CIcos    (CRTDLL.008)
    162  */
    163 double CDECL CRTDLL__CIcos( double x )
    164 {
    165   dprintf2(("CRTDLL: _CIcos\n"));
    166   dprintf2(("should be register function\n"));
    167   return cos(x);
    168 }
    169 
    170 
    171 /*********************************************************************
    172  *                  _CIcosh    (CRTDLL.009)
    173  */
    174 double CDECL CRTDLL__CIcosh( double x )
    175 {
    176   dprintf2(("CRTDLL: _CIcosh\n"));
    177   dprintf2(("should be register function\n"));
    178   return cosh(x);
    179 }
    180 
    181 
    182 /*********************************************************************
    183  *                  _CIexp    (CRTDLL.010)
    184  */
    185 double CDECL CRTDLL__CIexp( double x )
    186 {
    187   dprintf2(("CRTDLL: _CIexp\n"));
    188   dprintf2(("should be register function\n"));
    189   return exp(x);
    190 }
    191 
    192 
    193 /*********************************************************************
    194  *                  _CIfmod     (CRTDLL.011)
    195  */
    196 double CDECL CRTDLL__CIfmod( double x, double y )
    197 {
    198   dprintf2(("CRTDLL: _CIfmod\n"));
    199   dprintf2(("should be register function\n"));
    200   return fmod(x,y);
    201 }
    202 
    203 
    204 /*********************************************************************
    205  *                  _CIlog    (CRTDLL.012)
    206  */
    207 double CDECL CRTDLL__CIlog( double x )
    208 {
    209   dprintf2(("CRTDLL: _CIlog\n"));
    210   dprintf2(("should be register function\n"));
    211   return log(x);
    212 }
    213 
    214 
    215 /*********************************************************************
    216  *                  _CIlog10    (CRTDLL.013)
    217  */
    218 double CDECL CRTDLL__CIlog10( double x )
    219 {
    220   dprintf2(("CRTDLL: _CIlog10\n"));
    221   dprintf2(("should be register function\n"));
    222   return log10(x);
    223 }
    224 
    225 
    226 /*********************************************************************
    227  *                  _CIsin     (CRTDLL.015)
    228  */
    229 double CDECL CRTDLL__CIsin( double x )
    230 {
    231   dprintf2(("CRTDLL: _CIsin\n"));
    232   dprintf2(("should be register function\n"));
    233   return sin(x);
    234 }
    235 
    236 
    237 /*********************************************************************
    238  *                  _CIsinh    (CRTDLL.016)
    239  */
    240 double CDECL CRTDLL__CIsinh( double x )
    241 {
    242   dprintf2(("CRTDLL: _CIsinh\n"));
    243   dprintf2(("should be register function\n"));
    244   return sinh(x);
    245 }
    246 
    247 
    248 /*********************************************************************
    249  *                  _CIsqrt    (CRTDLL.017)
    250  */
    251 double CDECL CRTDLL__CIsqrt( double x )
    252 {
    253   dprintf2(("CRTDLL: _CIsqrt\n"));
    254   dprintf2(("should be register function\n"));
    255   return acos(x);
    256 }
    257 
    258 
    259 /*********************************************************************
    260  *                  _CItan    (CRTDLL.018)
    261  */
    262 double CDECL CRTDLL__CItan( double x )
    263 {
    264   dprintf2(("CRTDLL: _CItan\n"));
    265   dprintf2(("should be register function\n"));
    266   return tan(x);
    267 }
    268 
    269 
    270 /*********************************************************************
    271  *                  _CItanh    (CRTDLL.019)
    272  */
    273 double CDECL CRTDLL__CItanh( double x )
    274 {
    275   dprintf2(("CRTDLL: _CItanh\n"));
    276   dprintf2(("should be register function\n"));
    277   return tanh(x);
    278 }
    279 
    280 
    281115/*********************************************************************
    282116 *                  _XcptFilter    (CRTDLL.21)
     
    287121  return UnhandledExceptionFilter(ExceptionInfo);
    288122}
    289 
    290123
    291124/*********************************************************************
Note: See TracChangeset for help on using the changeset viewer.