1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- unit system;
- interface
- {$Y-}
- type
- integer=-32768..32767;
- byte=0..255;
- word=0..65535;
- longint=$80000000..$7fffffff;
- pchar=^char;
- var
- a,b,c,d : longint;
- s1,s2 : string;
- i1,i2 : int64;
- implementation
- { $i ../powerpc/powerpc.inc}
- {
- procedure p1(l1,l2,l3 : longint);
- begin
- end;
- procedure do_exit;[public,alias:'FPC_DO_EXIT'];
- begin
- end;
- }
- function GetProcessID: SizeUInt;
- begin
- GetProcessID := 1;
- end;
- begin
- b:=4;
- a:=b;
- i1:=i2;
- // p1(a,b,3);
- // s1:=s2;
- end.
- {
- $Log$
- Revision 1.5 2004-12-05 14:36:37 hajny
- + GetProcessID added
- Revision 1.4 2002/09/07 16:01:17 peter
- * old logs removed and tabs fixed
- Revision 1.3 2002/07/28 20:43:47 florian
- * several fixes for linux/powerpc
- * several fixes to MT
- }
|