system.pp 228 B

1234567891011121314151617181920
  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. implementation
  11. procedure do_exit;[public,alias:'FPC_DO_EXIT'];
  12. begin
  13. end;
  14. begin
  15. end.