system.pp 302 B

12345678910111213141516171819202122232425
  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.
  16. $Log$
  17. Revision 1.2 2000-07-13 11:33:38 michael
  18. + removed logs
  19. }