fpc/tests/webtbs/tw25169.pp
2016-08-14 14:09:24 +00:00

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.