system.pp 777 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. unit system;
  2. interface
  3. {$Y-}
  4. type
  5. integer=-32768..32767;
  6. byte=0..255;
  7. word=0..65535;
  8. longint=$80000000..$7fffffff;
  9. pchar=^char;
  10. var
  11. a,b,c,d : longint;
  12. s1,s2 : string;
  13. i1,i2 : int64;
  14. implementation
  15. { $i ../powerpc/powerpc.inc}
  16. {
  17. procedure p1(l1,l2,l3 : longint);
  18. begin
  19. end;
  20. procedure do_exit;[public,alias:'FPC_DO_EXIT'];
  21. begin
  22. end;
  23. }
  24. function GetProcessID: SizeUInt;
  25. begin
  26. GetProcessID := 1;
  27. end;
  28. begin
  29. b:=4;
  30. a:=b;
  31. i1:=i2;
  32. // p1(a,b,3);
  33. // s1:=s2;
  34. end.
  35. {
  36. $Log$
  37. Revision 1.5 2004-12-05 14:36:37 hajny
  38. + GetProcessID added
  39. Revision 1.4 2002/09/07 16:01:17 peter
  40. * old logs removed and tabs fixed
  41. Revision 1.3 2002/07/28 20:43:47 florian
  42. * several fixes for linux/powerpc
  43. * several fixes to MT
  44. }