mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-06 08:38:52 +02:00
21 lines
228 B
ObjectPascal
21 lines
228 B
ObjectPascal
unit system;
|
|
interface
|
|
|
|
{$Y-}
|
|
|
|
type
|
|
integer=-32768..32767;
|
|
byte=0..255;
|
|
word=0..65535;
|
|
longint=$80000000..$7fffffff;
|
|
pchar=^char;
|
|
|
|
implementation
|
|
|
|
procedure do_exit;[public,alias:'FPC_DO_EXIT'];
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|