math.inc 1014 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 2003 by the Free Pascal development team.
  5. Implementation of mathematical Routines (only for real)
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. {$define FPC_SYSTEM_HAS_ABS}
  13. function abs(d : extended) : extended;[internproc:in_abs_extended];
  14. {$define FPC_SYSTEM_HAS_SQR}
  15. function sqr(d : extended) : extended;[internproc:in_sqr_extended];
  16. {
  17. $Log$
  18. Revision 1.2 2003-09-03 14:09:37 florian
  19. * arm fixes to the common rtl code
  20. * some generic math code fixed
  21. * ...
  22. Revision 1.1 2003/08/21 16:41:54 florian
  23. * empty dummy files
  24. + [long|set]jmp implemented
  25. }