mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
11 lines
203 B
ObjectPascal
11 lines
203 B
ObjectPascal
{ %target=darwin,linux,freebsd,openbsd,netbsd,solaris,haiku }
|
|
|
|
uses
|
|
unixcp;
|
|
begin
|
|
if GetCodepageByName('cp1250')<>1250 then
|
|
halt(1);
|
|
if GetCodepageByName('CP1250')<>1250 then
|
|
halt(2);
|
|
end.
|