1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- {
- $Id$
- This file is part of the Free Pascal run time library.
- Copyright (c) 2000 by Jonas Maebe and other members of the
- Free Pascal development team
- Implementation of mathamatical Routines (only for real)
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- 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.
- **********************************************************************}
- {$ifdef INTERNCONSTINTF}
- {$ifndef FPC_SYSTEM_HAS_ABS}
- {$define FPC_SYSTEM_HAS_ABS}
- function fpc_abs_real(d : valreal) : valreal;compilerproc;
- begin
- { Function is handled internal in the compiler }
- runerror(207);
- result:=0;
- end;
- {$endif}
- {$ifndef FPC_SYSTEM_HAS_SQR}
- {$define FPC_SYSTEM_HAS_SQR}
- function fpc_sqr_real(d : valreal) : valreal;compilerproc;
- begin
- { Function is handled internal in the compiler }
- runerror(207);
- result:=0;
- end;
- {$endif}
- {$ifndef FPC_SYSTEM_HAS_SQRT}
- {$define FPC_SYSTEM_HAS_SQRT}
- function fpc_sqrt_real(d : valreal) : valreal;compilerproc;
- begin
- { Function is handled internal in the compiler }
- runerror(207);
- result:=0;
- end;
- {$endif}
- {$else}
- {$define FPC_SYSTEM_HAS_ABS}
- function abs(d : extended) : extended;[internproc:fpc_in_abs_real];
- {$define FPC_SYSTEM_HAS_SQR}
- function sqr(d : extended) : extended;[internproc:fpc_in_sqr_real];
- {$define FPC_SYSTEM_HAS_SQRT}
- function sqrt(d : extended) : extended;[internproc:fpc_in_sqrt_real];
- {$endif}
- {
- $Log$
- Revision 1.14 2005-02-14 17:13:31 peter
- * truncate log
- Revision 1.13 2005/02/14 16:32:41 peter
- * solaris updates
- }
|