mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-21 11:19:37 +01:00
* fixed double identifier
git-svn-id: trunk@1836 -
This commit is contained in:
parent
2ec1678cc1
commit
20face432b
@ -30,20 +30,20 @@ var
|
|||||||
{$include utild2.inc}
|
{$include utild2.inc}
|
||||||
{$include utilf.inc}
|
{$include utilf.inc}
|
||||||
|
|
||||||
function TAG(value: pointer): longword; inline;
|
function TAG_(value: pointer): longword; inline;
|
||||||
function TAG(value: pchar): longword; inline;
|
function TAG_(value: pchar): longword; inline;
|
||||||
|
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
function TAG(value: pointer): longword; inline;
|
function TAG_(value: pointer): longword; inline;
|
||||||
begin
|
begin
|
||||||
TAG:=longword(value);
|
TAG_:=longword(value);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TAG(value: pchar): longword; inline;
|
function TAG_(value: pchar): longword; inline;
|
||||||
begin
|
begin
|
||||||
TAG:=longword(value);
|
TAG_:=longword(value);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user