system.pp 221 B

123456789101112131415161718
  1. unit system;
  2. interface
  3. type
  4. integer=-32768..32767;
  5. byte=0..255;
  6. word=0..65535;
  7. longint=$80000000..$7fffffff;
  8. pchar=^char;
  9. implementation
  10. procedure do_exit;[public,alias:'FPC_DO_EXIT'];
  11. begin
  12. end;
  13. begin
  14. end.