mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-15 06:49:13 +02:00
* Applied
This commit is contained in:
parent
3e69877222
commit
173d1a2554
@ -238,6 +238,18 @@ end;
|
|||||||
{ Include generic version }
|
{ Include generic version }
|
||||||
{$I genmath.inc}
|
{$I genmath.inc}
|
||||||
|
|
||||||
|
|
||||||
|
operator ** (bas,expo : real) e: real;
|
||||||
|
begin
|
||||||
|
e:=power(bas,expo);
|
||||||
|
end;
|
||||||
|
|
||||||
|
operator ** (bas,expo : int64) i: int64;
|
||||||
|
begin
|
||||||
|
i:=power(bas,expo);
|
||||||
|
end;
|
||||||
|
|
||||||
|
|
||||||
{****************************************************************************
|
{****************************************************************************
|
||||||
Subroutines for String handling
|
Subroutines for String handling
|
||||||
****************************************************************************}
|
****************************************************************************}
|
||||||
@ -864,7 +876,10 @@ end;
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.53 2004-02-06 20:17:13 daniel
|
Revision 1.54 2004-02-20 11:01:20 daniel
|
||||||
|
* Applied
|
||||||
|
|
||||||
|
Revision 1.53 2004/02/06 20:17:13 daniel
|
||||||
* Use $ for hex numbers instead of alien 0x
|
* Use $ for hex numbers instead of alien 0x
|
||||||
|
|
||||||
Revision 1.52 2004/01/22 20:12:37 florian
|
Revision 1.52 2004/01/22 20:12:37 florian
|
||||||
|
@ -429,6 +429,10 @@ Function odd(l:QWord):Boolean;{$ifdef SYSTEMINLINE}inline;{$endif}
|
|||||||
{ float math routines }
|
{ float math routines }
|
||||||
{$I mathh.inc}
|
{$I mathh.inc}
|
||||||
|
|
||||||
|
operator ** (bas,expo : real) e: real;
|
||||||
|
operator ** (bas,expo : int64) i: int64;
|
||||||
|
|
||||||
|
|
||||||
{****************************************************************************
|
{****************************************************************************
|
||||||
Addr/Pointer Handling
|
Addr/Pointer Handling
|
||||||
****************************************************************************}
|
****************************************************************************}
|
||||||
@ -722,7 +726,10 @@ const
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.84 2004-02-02 20:39:27 florian
|
Revision 1.85 2004-02-20 11:01:20 daniel
|
||||||
|
* Applied
|
||||||
|
|
||||||
|
Revision 1.84 2004/02/02 20:39:27 florian
|
||||||
+ added prefetch(const mem)
|
+ added prefetch(const mem)
|
||||||
|
|
||||||
Revision 1.83 2004/01/26 11:48:24 florian
|
Revision 1.83 2004/01/26 11:48:24 florian
|
||||||
|
Loading…
Reference in New Issue
Block a user