~ubuntu-branches/ubuntu/feisty/fpc/feisty

« back to all changes in this revision

Viewing changes to rtl/morphos/utility.pp

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-01-27 20:08:50 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070127200850-9mrptaqqjsx9nwa7
Tags: 2.0.4-5
* Fixed Build-Depends.
* Add myself to Uploaders in debian/control.
* Make sure that the sources are really patched before building them.
* Build unit 'libc' on powerpc too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{
2
 
    $Id: utility.pp,v 1.2 2005/02/14 17:13:30 peter Exp $
3
2
    This file is part of the Free Pascal run time library.
4
3
    Copyright (c) 2004 Karoly Balogh for Genesi S.a.r.l. <www.genesi.lu>
5
4
 
16
15
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17
16
 
18
17
 **********************************************************************}
19
 
 
 
18
{$inline on}
20
19
unit utility;
21
20
 
22
21
interface
31
30
{$include utild2.inc}
32
31
{$include utilf.inc}
33
32
 
 
33
function TAG_(value: pointer): longword; inline;
 
34
function TAG_(value: pchar): longword; inline;
 
35
 
 
36
 
34
37
implementation
35
38
 
 
39
function TAG_(value: pointer): longword; inline;
 
40
begin
 
41
  TAG_:=longword(value);
 
42
end;
 
43
 
 
44
function TAG_(value: pchar): longword; inline;
 
45
begin
 
46
  TAG_:=longword(value);
 
47
end;
 
48
 
 
49
 
36
50
begin
37
51
  UtilityBase:=MOS_UtilityBase;
38
52
end.
39
 
 
40
 
{
41
 
  $Log: utility.pp,v $
42
 
  Revision 1.2  2005/02/14 17:13:30  peter
43
 
    * truncate log
44
 
 
45
 
}