mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-17 20:16:09 +02:00
26 lines
302 B
ObjectPascal
26 lines
302 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.
|
|
$Log$
|
|
Revision 1.2 2000-07-13 11:33:38 michael
|
|
+ removed logs
|
|
|
|
}
|